@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | /** |
82 | 82 | * @param Writer $writer |
83 | - * @return ImplementCommand |
|
83 | + * @return Console\Command\ImplementCommand |
|
84 | 84 | */ |
85 | 85 | public function getImplementCommand(Writer $writer, InlineConfigurator $configurator): ImplementCommand |
86 | 86 | { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | /** |
93 | 93 | * @param Writer $writer |
94 | - * @return ImplementCommand |
|
94 | + * @return Console\Command\ImplementCommand |
|
95 | 95 | */ |
96 | 96 | private static function createImplementCommand(Writer $writer, InlineConfigurator $configurator): ImplementCommand |
97 | 97 | { |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | /** |
133 | 133 | * @param ServiceContainer $container |
134 | - * @return object|ConsoleIO |
|
134 | + * @return ConsoleIO |
|
135 | 135 | */ |
136 | 136 | private static function retrieveConsoleIo(ServiceContainer $container) |
137 | 137 | { |
@@ -66,7 +66,7 @@ |
||
66 | 66 | |
67 | 67 | return $command; |
68 | 68 | }, |
69 | - ['console.commands'] |
|
69 | + [ 'console.commands' ] |
|
70 | 70 | ); |
71 | 71 | } |
72 | 72 |
@@ -100,7 +100,7 @@ |
||
100 | 100 | if (!$this->validateInterface($interfaceName) && $this->confirmInterfaceGeneration($interfaceName)) { |
101 | 101 | $this->retrieveCodeGenerator()->generate( |
102 | 102 | $this->retrieveResourceManager()->createResource($interfaceName), |
103 | - ['interface'] |
|
103 | + [ 'interface' ] |
|
104 | 104 | ); |
105 | 105 | } |
106 | 106 |