1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-19 04:11:44 +02:00

coding style: fixes in code

This commit is contained in:
David Grudl
2017-07-11 12:29:13 +02:00
parent a299c622c3
commit dac0a116a8
32 changed files with 88 additions and 86 deletions

View File

@@ -9,12 +9,12 @@ require __DIR__ . '/bootstrap.php';
class MockResult extends Dibi\Result
{
function __construct()
public function __construct()
{
}
function test($row)
public function test($row)
{
$normalize = new ReflectionMethod(Dibi\Result::class, 'normalize');
$normalize->setAccessible(true);