1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-19 12:21:46 +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

@@ -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;
}
}