Updated PDO function mapping for php8#827
Closed
adrien-lessard wants to merge 1 commit intophpstan:masterfrom
adrien-lessard:update-pdo-function-map
Closed
Updated PDO function mapping for php8#827adrien-lessard wants to merge 1 commit intophpstan:masterfrom adrien-lessard:update-pdo-function-map
adrien-lessard wants to merge 1 commit intophpstan:masterfrom
adrien-lessard:update-pdo-function-map
Conversation
Member
|
Hi, these changes aren't needed as PHPStan merges functionMap with https://github.com/phpstan/php-8-stubs on PHP 8. If you have a specific bug you're trying to fix, please post a phpstan.org example first, thanks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
resources/functionMap.php is updated to reflect the function signatures of PHP 8 for the classes PDO and PDOStatement. Entries in resources/functionMap_php80delta.php should preserve backward compatibility to PHP 7.
The specific issue encountered was with the return value of PDO::fetchAll, which changed from 'array|false' to 'array'. The pull request can be limited to only fix PDO::fetchAll if the changes are too important.