Update method signature in test

This commit is contained in:
Nikita Popov 2020-07-20 16:15:21 +02:00
parent 7d3e530f4e
commit 9ee16a3c12

View file

@ -24,9 +24,9 @@ MySQLPDOTest::skip();
return parent::exec($statement);
}
public function query($statement) {
public function query(...$args) {
$this->protocol();
return call_user_func_array(array($this, 'parent::query'), func_get_args());
return parent::query(...$args);
}
public function __call($method, $args) {