1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-12 09:04:24 +02:00

coding style: removed space after reference &

This commit is contained in:
David Grudl
2017-06-09 21:55:33 +02:00
parent f7009f3e0c
commit d9628f933d
19 changed files with 60 additions and 60 deletions

View File

@@ -10,7 +10,7 @@ class MockDriver extends Dibi\Drivers\SqlsrvDriver
function __construct()
{}
function connect(array & $config)
function connect(array &$config)
{}
function query($sql)

View File

@@ -15,7 +15,7 @@ class MockResult extends Dibi\Result
{
$normalize = new ReflectionMethod('Dibi\Result', 'normalize');
$normalize->setAccessible(TRUE);
$normalize->invokeArgs($this, [& $row]);
$normalize->invokeArgs($this, [&$row]);
return $row;
}
}