@@ -11,7 +11,6 @@ |
||
11 | 11 | use Hal\Component\OOP\Reflected\MethodUsage; |
12 | 12 | use Hal\Component\OOP\Reflected\ReflectedArgument; |
13 | 13 | use Hal\Component\OOP\Reflected\ReflectedClass; |
14 | -use Hal\Component\OOP\Reflected\ReflectedClass\ReflectedAnonymousClass; |
|
15 | 14 | use Hal\Component\OOP\Reflected\ReflectedMethod; |
16 | 15 | use Hal\Component\OOP\Reflected\ReflectedReturn; |
17 | 16 | use Hal\Component\OOP\Resolver\TypeResolver; |
@@ -145,7 +145,7 @@ |
||
145 | 145 | case $this->searcher->isPrecededBy(T_PROTECTED, $n, $tokens, 4): |
146 | 146 | $visibility = ReflectedMethod::VISIBILITY_PROTECTED; |
147 | 147 | break; |
148 | - case $this->searcher->isPrecededBy(T_PUBLIC, $n, $tokens, 4): |
|
148 | + case $this->searcher->isPrecededBy(T_PUBLIC, $n, $tokens, 4): |
|
149 | 149 | default: |
150 | 150 | $visibility = ReflectedMethod::VISIBILITY_PUBLIC; |
151 | 151 | break; |
@@ -11,7 +11,6 @@ |
||
11 | 11 | use Hal\Application\Formater\FormaterInterface; |
12 | 12 | use Hal\Component\Result\ResultCollection; |
13 | 13 | use Symfony\Component\Console\Output\OutputInterface; |
14 | -use Symfony\Component\Console\Output\StreamOutput; |
|
15 | 14 | |
16 | 15 | |
17 | 16 | /** |
@@ -9,10 +9,6 @@ |
||
9 | 9 | |
10 | 10 | namespace Hal\Application\Config; |
11 | 11 | use Hal\Component\Chart\Graphviz; |
12 | -use Hal\Component\Config\Hydrator; |
|
13 | -use Hal\Component\Config\Loader; |
|
14 | -use Hal\Component\Config\Validator; |
|
15 | -use Symfony\Component\Console\Input\InputInterface; |
|
16 | 12 | |
17 | 13 | /** |
18 | 14 | * Config checker |