From 87fce033bd6a27442f8e0bd4f58b191dc6386918 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Fri, 16 Jun 2017 19:22:42 -0400 Subject: [PATCH] Fix failing tests Not sure how I missed this... --- lib/Db/SQLite3/Statement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Db/SQLite3/Statement.php b/lib/Db/SQLite3/Statement.php index 14748bc..7a8b411 100644 --- a/lib/Db/SQLite3/Statement.php +++ b/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);