1
0
mirror of https://github.com/dg/dibi.git synced 2025-09-01 10:02:53 +02:00

coding style: fixed spaces & use statements order

This commit is contained in:
David Grudl
2017-07-11 12:27:26 +02:00
parent 1278907f39
commit 3b37295e78
61 changed files with 36 additions and 85 deletions

View File

@@ -1,5 +1,4 @@
<?php
declare(strict_types=1);
use Tester\Assert;
@@ -17,23 +16,33 @@ class TestClass
public static $publicStatic;
public function publicMethod()
{}
{
}
public static function publicMethodStatic()
{}
{
}
protected function protectedMethod()
{}
{
}
protected static function protectedMethodS()
{}
{
}
public function getBar()
{
return 123;
}
public function isFoo()
{
return 456;