mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Update method signature in test
This commit is contained in:
parent
7d3e530f4e
commit
9ee16a3c12
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue