Skip to content

Commit 5b71cfe

Browse files
committed
Apply fixes from StyleCI
1 parent 591e1c1 commit 5b71cfe

6 files changed

+36
-35
lines changed

src/Conso/CommandInvoker.php

+12-11
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,11 @@ public function showConsoleInformation(array $commands)
9696
*
9797
* @return void
9898
*/
99-
public function showConsoleCommands(array $commands) : void
99+
public function showConsoleCommands(array $commands): void
100100
{
101-
if (count($commands) < 1) return;
101+
if (count($commands) < 1) {
102+
return;
103+
}
102104

103105
// sort & get max length command
104106
sort($commands);
@@ -107,24 +109,22 @@ public function showConsoleCommands(array $commands) : void
107109
// group commands
108110
$grouped = [];
109111

110-
foreach($commands as $command)
112+
foreach ($commands as $command) {
111113
$grouped[$command['group']][] = $command;
114+
}
112115

113116
$this->output->writeLn("\nAvailable Commands:\n\n", 'yellow');
114117

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) {
119120
$this->output->writeLn(' '.$command['name'].str_repeat(' ', ($max - strlen($command['name'])) + 4), 'green');
120121
$this->output->writeLn($command['description']."\n");
121122
}
122123

123124
unset($grouped['main']);
124125
}
125126

126-
foreach($grouped as $group => $commands) // if groups
127-
{
127+
foreach ($grouped as $group => $commands) { // if groups
128128
$this->output->writeLn("\n$group\n\n", 'yellow');
129129

130130
foreach ($commands as $command) {
@@ -190,6 +190,7 @@ public function invoke(?array $command)
190190
protected function invokeCallback(array $command)
191191
{
192192
$closure = \Closure::bind($command['action'], $this->app);
193+
193194
return call_user_func_array($closure, [$this->input, $this->output]);
194195
}
195196

@@ -205,8 +206,8 @@ protected function invokeClassMethod(array $command)
205206
$subCommand = $this->input->subCommand();
206207

207208
// 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']);
210211

211212
if (!class_exists($class)) {
212213
throw new InvokerException("command class ($class) is not defined.");

src/Conso/CommandsTable.php

+15-13
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ class CommandsTable
3030
];
3131

3232
/**
33-
* command group
33+
* command group.
3434
*
3535
* @var ?string
3636
*/
3737
private $group = 'main';
3838

3939
/**
40-
* command namespace
40+
* command namespace.
4141
*
4242
* @var ?string
4343
*/
44-
private $namespace = NULL;
44+
private $namespace = null;
4545

4646
/**
4747
* add command method.
@@ -62,7 +62,7 @@ public function add(string $name, $action): self
6262
'description' => '',
6363
'help' => [],
6464
'group' => $this->group,
65-
'namespace' => $this->namespace
65+
'namespace' => $this->namespace,
6666
];
6767

6868
return $this;
@@ -147,45 +147,47 @@ public function help(array $help): self
147147
}
148148

149149
/**
150-
* set command group
150+
* set command group.
151151
*
152152
* @param string $group
153+
*
153154
* @return void
154155
*/
155-
public function setGroup(string $group) : void
156+
public function setGroup(string $group): void
156157
{
157158
$this->group = $group;
158159
}
159160

160161
/**
161-
* unset group
162+
* unset group.
162163
*
163164
* @return void
164165
*/
165-
public function unsetGroup() : void
166+
public function unsetGroup(): void
166167
{
167168
$this->group = 'main';
168169
}
169170

170171
/**
171-
* set namespace
172+
* set namespace.
172173
*
173174
* @param string $namespace
175+
*
174176
* @return void
175177
*/
176-
public function setNamespace(string $namespace) : void
178+
public function setNamespace(string $namespace): void
177179
{
178180
$this->namespace = $namespace;
179181
}
180182

181183
/**
182-
* unset namespace
184+
* unset namespace.
183185
*
184186
* @return void
185187
*/
186-
public function unsetNamespace() : void
188+
public function unsetNamespace(): void
187189
{
188-
$this->namespace = NULL;
190+
$this->namespace = null;
189191
}
190192

191193
/**

src/Conso/Conso.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -85,23 +85,23 @@ public function command(string $name, $action): CommandsTable
8585
}
8686

8787
/**
88-
* command group method
88+
* command group method.
8989
*
9090
* @return void
9191
*/
92-
public function group(string $name, callable $callback) : void
92+
public function group(string $name, callable $callback): void
9393
{
9494
$this->table->setGroup($name);
9595
call_user_func($callback, $this);
9696
$this->table->unsetGroup();
9797
}
9898

9999
/**
100-
* command group method
100+
* command group method.
101101
*
102102
* @return void
103103
*/
104-
public function namespace(string $namespace, callable $callback) : void
104+
public function namespace(string $namespace, callable $callback): void
105105
{
106106
$this->table->setNamespace($namespace);
107107
call_user_func($callback, $this);

src/Conso/hlprs.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,16 @@ function readCommandPropertiesFromClass(array &$command): void
7171

7272
if (is_string($command['action'])) { // if is controller
7373

74-
$namespace = (!is_null($command['namespace'])) ? rtrim($command['namespace'], '\\') . '\\' : '';
75-
$class = $namespace . ucfirst($command['action']);
74+
$namespace = (!is_null($command['namespace'])) ? rtrim($command['namespace'], '\\').'\\' : '';
75+
$class = $namespace.ucfirst($command['action']);
7676

77-
if(class_exists($class))
78-
{
77+
if (class_exists($class)) {
7978
foreach ($list as $lst) {
8079
if (empty($command[$lst])) {
8180
$command[$lst] = readProtectedProperty($class, $lst);
8281
}
8382
}
8483
}
85-
8684
} // fill from command class if not defined by method
8785
}
8886

tests/Unit/CommandInvokerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function setUp(): void
5757
'description' => 'This is make command',
5858
'help' => [],
5959
'group' => 'main',
60-
'namespace' => NULL
60+
'namespace' => null,
6161
],
6262
];
6363
}

tests/Unit/CommandLinkerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function setUp(): void
5757
'description' => 'This is make command',
5858
'help' => [],
5959
'group' => 'main',
60-
'namespace' => NULL
60+
'namespace' => null,
6161
],
6262
];
6363
}

0 commit comments

Comments
 (0)