@@ -10,7 +10,7 @@ |
||
| 10 | 10 | public $commandClass; |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * @param $commandName |
|
| 13 | + * @param string $commandName |
|
| 14 | 14 | * @param $commandClass |
| 15 | 15 | */ |
| 16 | 16 | public function __construct($commandName, $commandClass) |
@@ -39,8 +39,7 @@ |
||
| 39 | 39 | $commandReflection = new \ReflectionClass($this->commandClass); |
| 40 | 40 | |
| 41 | 41 | return $commandParameters = $commandReflection->getConstructor() ? |
| 42 | - $commandReflection->getConstructor()->getParameters() : |
|
| 43 | - []; |
|
| 42 | + $commandReflection->getConstructor()->getParameters() : []; |
|
| 44 | 43 | } |
| 45 | 44 | |
| 46 | 45 | /** |