We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf7ef4 commit 9e1282bCopy full SHA for 9e1282b
Command/Help/DefaultController.php
@@ -3,6 +3,7 @@
3
namespace librarianphp\Help;
4
5
use Minicli\App;
6
+use Minicli\Command\CommandCall;
7
use Minicli\Command\CommandController;
8
use Minicli\Command\CommandRegistry;
9
@@ -11,9 +12,9 @@ class DefaultController extends CommandController
11
12
/** @var array */
13
protected array $commandMap = [];
14
- public function boot(App $app): void
15
+ public function boot(App $app, CommandCall $input): void
16
{
- parent::boot($app);
17
+ parent::boot($app, $input);
18
$this->commandMap = $app->commandRegistry->getCommandMap();
19
}
20
0 commit comments