Skip to content

Commit 751b505

Browse files
committed
Remove PHP 5.6 syntax
1 parent 1d69f07 commit 751b505

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vendor/Horde/Db/Adapter/Pdo/Sqlite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ protected function _catchSchemaChanges($method, $args = array())
160160
{
161161
$callable = function() use ($method, $args) {
162162
switch ($method) {
163-
case 'execute': return parent::execute(...$args);
163+
case 'execute': return parent::execute($args[0], $args[1], $args[2]);
164164
case 'beginDbTransaction': return parent::beginDbTransaction();
165165
case 'commitDbTransaction': return parent::commitDbTransaction();
166166
case 'rollbackDbTransaction':return parent::rollbackDbTransaction();

0 commit comments

Comments
 (0)