@@ -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; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * Extracts visibility |
134 | 134 | * |
135 | 135 | * @param ReflectedMethod $method |
136 | - * @param $n |
|
136 | + * @param integer $n |
|
137 | 137 | * @param TokenCollection $tokens |
138 | 138 | * @return $this |
139 | 139 | */ |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * Extracts state |
159 | 159 | * |
160 | 160 | * @param ReflectedMethod $method |
161 | - * @param $n |
|
161 | + * @param integer $n |
|
162 | 162 | * @param TokenCollection $tokens |
163 | 163 | * @return $this |
164 | 164 | */ |
@@ -233,8 +233,6 @@ discard block |
||
233 | 233 | * Extracts calls of method |
234 | 234 | * |
235 | 235 | * @param ReflectedMethod $method |
236 | - * @param integer $n |
|
237 | - * @param TokenCollection $tokens |
|
238 | 236 | * @return $this |
239 | 237 | */ |
240 | 238 | private function extractCalls(ReflectedMethod $method) { |
@@ -262,6 +260,7 @@ discard block |
||
262 | 260 | * Extract the list of returned values |
263 | 261 | * |
264 | 262 | * @param ReflectedMethod $method |
263 | + * @param integer $n |
|
265 | 264 | * @return $this |
266 | 265 | */ |
267 | 266 | private function extractReturns(ReflectedMethod $method, $n, TokenCollection $tokens) { |
@@ -83,7 +83,7 @@ |
||
83 | 83 | /** |
84 | 84 | * Clean php source |
85 | 85 | * |
86 | - * @param $content |
|
86 | + * @param string $content |
|
87 | 87 | * @return string |
88 | 88 | */ |
89 | 89 | private function cleanup($content) { |
@@ -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 | /** |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * @return TokenCollection |
|
166 | + * @return \Hal\Component\Token\TokenCollection |
|
167 | 167 | */ |
168 | 168 | public function getTokens() |
169 | 169 | { |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | } |
366 | 366 | |
367 | 367 | /** |
368 | - * @param $class |
|
368 | + * @param string|null $class |
|
369 | 369 | * @return $this |
370 | 370 | */ |
371 | 371 | public function pushInstanciedClass($class) { |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | } |
387 | 387 | |
388 | 388 | /** |
389 | - * @param $call |
|
389 | + * @param string $call |
|
390 | 390 | * @return $this |
391 | 391 | */ |
392 | 392 | public function pushInternalCall($call) |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | } |
405 | 405 | |
406 | 406 | /** |
407 | - * @param $call |
|
407 | + * @param string $call |
|
408 | 408 | * @return $this |
409 | 409 | */ |
410 | 410 | public function pushExternalCall($call) |
@@ -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 |