File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/Tqdev/PhpCrudApi/Database Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6387,7 +6387,7 @@ public function lastInsertId(/* ?string */$name = null): string
63876387 return $ this ->pdo ()->lastInsertId ($ name );
63886388 }
63896389
6390- public function query (string $ query , int $ fetchMode = null , mixed ...$ fetchModeArgs ): \PDOStatement
6390+ public function query ($ query , /* ? int */ $ fetchMode = null , ...$ fetchModeArgs ): \PDOStatement
63916391 {
63926392 return call_user_func_array (array ($ this ->pdo (), 'query ' ), func_get_args ());
63936393 }
Original file line number Diff line number Diff line change @@ -6387,7 +6387,7 @@ public function lastInsertId(/* ?string */$name = null): string
63876387 return $ this ->pdo ()->lastInsertId ($ name );
63886388 }
63896389
6390- public function query (string $ query , int $ fetchMode = null , mixed ...$ fetchModeArgs ): \PDOStatement
6390+ public function query ($ query , /* ? int */ $ fetchMode = null , ...$ fetchModeArgs ): \PDOStatement
63916391 {
63926392 return call_user_func_array (array ($ this ->pdo (), 'query ' ), func_get_args ());
63936393 }
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ public function lastInsertId(/* ?string */$name = null): string
117117 return $ this ->pdo ()->lastInsertId ($ name );
118118 }
119119
120- public function query (string $ query , int $ fetchMode = null , mixed ...$ fetchModeArgs ): \PDOStatement
120+ public function query ($ query , /* ? int */ $ fetchMode = null , ...$ fetchModeArgs ): \PDOStatement
121121 {
122122 return call_user_func_array (array ($ this ->pdo (), 'query ' ), func_get_args ());
123123 }
You can’t perform that action at this time.
0 commit comments