Skip to content

Commit

Permalink
Update src/AbstractExtendedPdo.php
Browse files Browse the repository at this point in the history
Co-authored-by: kenjis <[email protected]>
  • Loading branch information
srjlewis and kenjis authored Nov 7, 2021
1 parent 52b5340 commit aa574c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AbstractExtendedPdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ public function perform(string $statement, array $values = []): PDOStatement
* @see http://php.net/manual/en/pdo.prepare.php
*
*/
public function prepare(string $statement, array $options = []): PDOStatement
public function prepare(string $query, array $options = []): PDOStatement
{
$this->connect();
$sth = $this->pdo->prepare($statement, $options);
Expand Down

0 comments on commit aa574c9

Please sign in to comment.