1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Fix failing tests

Not sure how I missed this...
This commit is contained in:
J. King 2017-06-16 19:22:42 -04:00
parent 21db3d0f52
commit 87fce033bd

View file

@ -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);