Skip to content

ext/pdo: Fixed parent class of subclass stubs #14990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/pdo_dblib/pdo_dblib.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @strict-properties
* @not-serializable
*/
class Dblib extends PDO
class Dblib extends \PDO
{
/** @cvalue PDO_DBLIB_ATTR_CONNECTION_TIMEOUT */
public const int ATTR_CONNECTION_TIMEOUT = UNKNOWN;
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_dblib/pdo_dblib_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext/pdo_firebird/pdo_firebird.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @strict-properties
* @not-serializable
*/
class Firebird extends PDO
class Firebird extends \PDO
{
/** @cvalue PDO_FB_ATTR_DATE_FORMAT */
public const int ATTR_DATE_FORMAT = UNKNOWN;
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_firebird/pdo_firebird_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext/pdo_mysql/pdo_mysql.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @strict-properties
* @not-serializable
*/
class Mysql extends PDO
class Mysql extends \PDO
{
/** @cvalue PDO_MYSQL_ATTR_USE_BUFFERED_QUERY */
public const int ATTR_USE_BUFFERED_QUERY = UNKNOWN;
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_mysql/pdo_mysql_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext/pdo_odbc/pdo_odbc.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @strict-properties
* @not-serializable
*/
class Odbc extends PDO
class Odbc extends \PDO
{
/** @cvalue PDO_ODBC_ATTR_USE_CURSOR_LIBRARY */
public const int ATTR_USE_CURSOR_LIBRARY = UNKNOWN;
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_odbc/pdo_odbc_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext/pdo_pgsql/pdo_pgsql.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @strict-properties
* @not-serializable
*/
class Pgsql extends PDO
class Pgsql extends \PDO
{
/** @cvalue PDO_PGSQL_ATTR_DISABLE_PREPARES */
public const int ATTR_DISABLE_PREPARES = UNKNOWN;
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_pgsql/pdo_pgsql_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext/pdo_sqlite/pdo_sqlite.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @strict-properties
* @not-serializable
*/
class Sqlite extends PDO
class Sqlite extends \PDO
{
#ifdef SQLITE_DETERMINISTIC
/** @cvalue SQLITE_DETERMINISTIC */
Expand Down
6 changes: 3 additions & 3 deletions ext/pdo_sqlite/pdo_sqlite_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading