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:
@@ -10,7 +10,7 @@ class MockDriver extends Dibi\Drivers\SqlsrvDriver
|
||||
function __construct()
|
||||
{}
|
||||
|
||||
function connect(array & $config)
|
||||
function connect(array &$config)
|
||||
{}
|
||||
|
||||
function query($sql)
|
||||
|
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user