Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function boot(ContainerInterface $app) |
||
18 | { |
||
19 | if ($app->has(KernelInterface::class)) { |
||
20 | $kernel = $app->get(KernelInterface::class); |
||
21 | $kernel['commands'] = require __DIR__ . '/../app/commands.php'; |
||
22 | $kernel['routes'] = require __DIR__ . '/../app/routes.php'; |
||
23 | } |
||
24 | } |
||
25 | } |
||
26 |