1 | <?php |
||
12 | abstract class Bootstrap implements BootstrapAbstract |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function providers(): array |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function boot(ContainerInterface $app) |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function execute(ContainerInterface $app): int |
||
42 | |||
43 | /** |
||
44 | * @param \Wandu\Console\Contracts\CommandAttachable $manager |
||
45 | */ |
||
46 | abstract public function registerCommands(CommandAttachable $manager); |
||
47 | |||
48 | /** |
||
49 | * @param \Wandu\Config\Contracts\Config $config |
||
50 | */ |
||
51 | abstract public function registerConfiguration(Config $config); |
||
52 | } |
||
53 |