Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
21 | public function boot(ContainerInterface $app) |
||
22 | { |
||
23 | if ($app->has(KernelInterface::class)) { |
||
24 | /** @var \Wandu\Foundation\Contracts\KernelInterface $kernel */ |
||
25 | $kernel = $app->get(KernelInterface::class); |
||
26 | $kernel['commands'] = [ |
||
27 | 'install' => InstallCommand::class, |
||
28 | ]; |
||
29 | } |
||
30 | } |
||
31 | } |
||
32 |