Skip to content

Commit 25b5a93

Browse files
authored
Merge pull request #91 from adhocore/analysis-PGl1Vo
Apply fixes from StyleCI
2 parents 963fc8b + 2f5659e commit 25b5a93

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/Application.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ public function add(Command $command, string $alias = '', bool $default = false)
179179
*
180180
* @param string $commandName The name of the default command
181181
*
182-
* @return self The application
183-
*
184182
* @throws InvalidArgumentException If the specified command name does not exist
183+
*
184+
* @return self The application
185185
*/
186186
public function defaultCommand(string $commandName): self
187187
{
@@ -204,7 +204,6 @@ public function getDefaultCommand(): ?string
204204
return $this->default;
205205
}
206206

207-
208207
/**
209208
* Groups commands set within the callable.
210209
*

src/Output/ProgressBar.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ protected function getProgressBarStr(int $current, string $label): string
249249

250250
if ($label) {
251251
$label = $this->labelFormatted($label);
252-
// If this line doesn't have a label, but we've had one before,
253-
// then ensure the label line is cleared
252+
// If this line doesn't have a label, but we've had one before,
253+
// then ensure the label line is cleared
254254
} elseif ($this->hasLabelLine) {
255255
$label = $this->labelFormatted('');
256256
}

tests/ApplicationTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ protected function newApp(string $name, string $version = '')
308308

309309
public function testDefaultCommand()
310310
{
311-
$app = $this->newApp("test");
311+
$app = $this->newApp('test');
312312

313313
// Add some sample commands to the application
314314
$app->command('command1');

0 commit comments

Comments
 (0)