Skip to content

Commit 87f723d

Browse files
committed
Fix identation
1 parent 2c9858c commit 87f723d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ protected function aliasesFor(Command $command): array
357357
public function help(?string $help = null): mixed
358358
{
359359
if (func_num_args() === 0) {
360-
return $this->_help;
360+
return $this->_help;
361361
}
362362

363363
$this->_help = $help;

src/Input/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ protected function handleUnknown(string $arg, ?string $value = null): mixed
302302
public function help(?string $help = null): mixed
303303
{
304304
if (func_num_args() === 0) {
305-
return $this->_help;
305+
return $this->_help;
306306
}
307307

308308
$this->_help = $help;

tests/Input/CommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public function __construct($tester)
284284
}
285285
};
286286
}
287-
287+
288288
public function test_custom_help()
289289
{
290290
$p = $this->newCommand();

0 commit comments

Comments
 (0)