| 1 | <?php |
||
| 9 | class ConsoleBootstrap implements Bootstrap |
||
| 10 | { |
||
| 11 | /** @var array */ |
||
| 12 | protected $commands; |
||
| 13 | |||
| 14 | public function __construct(array $commands = []) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function providers(): array |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function boot(ContainerInterface $app) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function execute(ContainerInterface $app): int |
||
| 42 | } |
||
| 43 |