You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A statement may have to return a string if its numeric value is greater than PHP_INT_MAX. All methods returning the number of affected rows should return int|string. See #5317 (comment).
Bug Report
Summary
Connection::exectureStatement
(https://github.com/doctrine/dbal/blob/3.3.x/src/Connection.php#L1128) declares that it can returnint|string
but 2 return statements (https://github.com/doctrine/dbal/blob/3.3.x/src/Connection.php#L1128 and https://github.com/doctrine/dbal/blob/3.3.x/src/Connection.php#L1160) return onlyint
.How to reproduce
n/a
Expected behaviour
It should return only
int
The text was updated successfully, but these errors were encountered: