@@ -96,9 +96,11 @@ public function showConsoleInformation(array $commands)
96
96
*
97
97
* @return void
98
98
*/
99
- public function showConsoleCommands (array $ commands ) : void
99
+ public function showConsoleCommands (array $ commands ): void
100
100
{
101
- if (count ($ commands ) < 1 ) return ;
101
+ if (count ($ commands ) < 1 ) {
102
+ return ;
103
+ }
102
104
103
105
// sort & get max length command
104
106
sort ($ commands );
@@ -107,24 +109,22 @@ public function showConsoleCommands(array $commands) : void
107
109
// group commands
108
110
$ grouped = [];
109
111
110
- foreach ($ commands as $ command )
112
+ foreach ($ commands as $ command ) {
111
113
$ grouped [$ command ['group ' ]][] = $ command ;
114
+ }
112
115
113
116
$ this ->output ->writeLn ("\nAvailable Commands: \n\n" , 'yellow ' );
114
117
115
- if (isset ($ grouped ['main ' ])) //no groups
116
- {
117
- foreach ($ grouped ['main ' ] as $ command )
118
- {
118
+ if (isset ($ grouped ['main ' ])) { //no groups
119
+ foreach ($ grouped ['main ' ] as $ command ) {
119
120
$ this ->output ->writeLn (' ' .$ command ['name ' ].str_repeat (' ' , ($ max - strlen ($ command ['name ' ])) + 4 ), 'green ' );
120
121
$ this ->output ->writeLn ($ command ['description ' ]."\n" );
121
122
}
122
123
123
124
unset($ grouped ['main ' ]);
124
125
}
125
126
126
- foreach ($ grouped as $ group => $ commands ) // if groups
127
- {
127
+ foreach ($ grouped as $ group => $ commands ) { // if groups
128
128
$ this ->output ->writeLn ("\n$ group \n\n" , 'yellow ' );
129
129
130
130
foreach ($ commands as $ command ) {
@@ -190,6 +190,7 @@ public function invoke(?array $command)
190
190
protected function invokeCallback (array $ command )
191
191
{
192
192
$ closure = \Closure::bind ($ command ['action ' ], $ this ->app );
193
+
193
194
return call_user_func_array ($ closure , [$ this ->input , $ this ->output ]);
194
195
}
195
196
@@ -205,8 +206,8 @@ protected function invokeClassMethod(array $command)
205
206
$ subCommand = $ this ->input ->subCommand ();
206
207
207
208
// append namespace
208
- $ namespace = (!is_null ($ command ['namespace ' ])) ? rtrim ($ command ['namespace ' ], '\\' ) . '\\' : '' ;
209
- $ class = $ namespace . ucfirst ($ command ['action ' ]);
209
+ $ namespace = (!is_null ($ command ['namespace ' ])) ? rtrim ($ command ['namespace ' ], '\\' ). '\\' : '' ;
210
+ $ class = $ namespace. ucfirst ($ command ['action ' ]);
210
211
211
212
if (!class_exists ($ class )) {
212
213
throw new InvokerException ("command class ( $ class) is not defined. " );
0 commit comments