Skip to content

Commit

Permalink
#16177 - Change default value to null
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Oct 24, 2022
1 parent 68ae8fd commit e6ff9cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phalcon/Db/Result/PdoResult.zep
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class PdoResult implements ResultInterface
public function fetchAll(
int mode = Enum::FETCH_DEFAULT,
var fetchArgument = Pdo::FETCH_ORI_NEXT,
var constructorArgs = 0
var constructorArgs = null
) -> array {
if mode == Enum::FETCH_CLASS {
return this->pdoStatement->fetchAll(mode, fetchArgument, constructorArgs);
Expand Down

0 comments on commit e6ff9cc

Please sign in to comment.