1 | <?php |
||
10 | class ConsoleBootstrapper implements Bootstrapper |
||
11 | { |
||
12 | /** @var array */ |
||
13 | protected $commands; |
||
14 | |||
15 | public function __construct(array $commands = []) |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function providers(): array |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function boot(ContainerInterface $app) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function execute(ContainerInterface $app): int |
||
54 | } |
||
55 |