History log of /PHP-8.2/ext/pdo/pdo_dbh.stub.php (Results 1 – 20 of 20)
Revision Date Author Comments
# d6a0b3af 11-Jan-2024 Máté Kocsis

Implement PDO driver-specific subclasses

RFC: https://wiki.php.net/rfc/pdo_driver_specific_subclasses
Closes GH-12804

Co-Authored-By: Danack <Danack@basereality.com>


# dff8679a 29-Oct-2023 Jorg Adam Sowa

Typed constants in PDO extension (#12362)


# dd002967 22-Jul-2022 Máté Kocsis

Declare ext/pdo constants in stubs (#9078)


# 342e18f1 12-Jul-2022 Tim Düsterhus

Support the actual `#[\SensitiveParameter]` attribute in stubs (#8836)


# 6906d1fc 27-Jan-2022 Tim Düsterhus

Mark parameter in ext/pdo as sensitive


# 2e343fcb 20-Aug-2021 Nikita Popov

Mark PDO::setAttribute() $value as mixed

For consistency with PDOStatement::setAttribute(). Attribute values
can for example also be bool.

This is backwards-compatible, as mixed

Mark PDO::setAttribute() $value as mixed

For consistency with PDOStatement::setAttribute(). Attribute values
can for example also be bool.

This is backwards-compatible, as mixed is the same as no type for
parameter variance.

show more ...


# 2378f357 20-Jul-2021 Máté Kocsis

Use single line phpdoc in stubs where possible


# 570d9b63 20-Jul-2021 Joe Watkins

Not serializable flag permeation


# 4ed66ff2 17-May-2021 Máté Kocsis

Declare tentative return types for ext/pdo

Closes GH-6996


# af56982a 14-Feb-2021 Máté Kocsis

Generate class entries from stubs for oci8, odbc, openssl, pcntl, pdo, pgsql

Closes GH-6691


# 0f369817 05-Oct-2020 Nikita Popov

Update PDO parameter names

Followup to previous changes:
* Use camel case, as PDO uses a camel case OO API.
* Use &$var instead of &$bind_var or &$param.
* Use $column instead

Update PDO parameter names

Followup to previous changes:
* Use camel case, as PDO uses a camel case OO API.
* Use &$var instead of &$bind_var or &$param.
* Use $column instead of $index. We have cases (both inside PDO
and in other DB exts) where columns can also be represented as
strings, so $column is the safer generic name.

Closes GH-6272.

show more ...


# ea03cbeb 26-Sep-2020 Larry Garfield

Update PDO parameters for named arguments.

Closes GH-6220


# f7fbc633 14-Aug-2020 Máté Kocsis

Add more precise type info for stubs

Closes GH-6005


# 046cc5e4 07-Aug-2020 Máté Kocsis

Add another round of missing parameter types to stubs

Closes GH-5950


# 7eec281b 24-Jul-2020 Nikita Popov

Avoid UNKNOWN default in PDO::query()


# 7d3e530f 17-Jul-2020 Nikita Popov

Use zpp for PDO fetch mode

Also changing the function signatures to accept variadic args
for the fetch params. If we're already breaking Doctrine anyway,
we may as well do it properl

Use zpp for PDO fetch mode

Also changing the function signatures to accept variadic args
for the fetch params. If we're already breaking Doctrine anyway,
we may as well do it properly.

show more ...


# b3718430 25-May-2020 Máté Kocsis

Annotate internal functions with the mixed type

Closes GH-5618


# 1c469adb 14-Apr-2020 Máté Kocsis

Remove PDO::dbh_constructor()


# c6485535 12-Apr-2020 Máté Kocsis

Generate method entries from stubs for curl, ffi, pdo, phar

Closes GH-5375


# 305b17e8 29-Mar-2020 Máté Kocsis

Do not include the same stub multiple times

Closes GH-5322