Browse Source

Fix failing tests

Not sure how I missed this...
microsub
J. King 7 years ago
parent
commit
87fce033bd
  1. 2
      lib/Db/SQLite3/Statement.php

2
lib/Db/SQLite3/Statement.php

@ -26,7 +26,7 @@ class Statement extends \JKingWeb\Arsse\Db\AbstractStatement {
protected $db;
protected $st;
public function __construct(\SQLite3 $db, \SQLite3Stmt $st, array $bindings = [], array $preValues, array $postValues) {
public function __construct(\SQLite3 $db, \SQLite3Stmt $st, array $bindings = [], array $preValues = [], array $postValues = []) {
$this->db = $db;
$this->st = $st;
$this->rebindArray($bindings);

Loading…
Cancel
Save