1 | <?php |
||
18 | class Configurations extends Bootstrapper |
||
19 | { |
||
20 | /** |
||
21 | * The application's core commands. |
||
22 | * |
||
23 | * @var string[] |
||
24 | */ |
||
25 | protected $commands = [ |
||
26 | Scheduling\ScheduleRunCommand::class, |
||
27 | Scheduling\ScheduleFinishCommand::class, |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * The application's development commands. |
||
32 | * |
||
33 | * @var string[] |
||
34 | */ |
||
35 | protected $developmentCommands = [ |
||
36 | Commands\App\Builder::class, |
||
37 | Commands\App\Renamer::class, |
||
38 | Commands\Component\Installer::class, |
||
39 | ]; |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function bootstrap(): void |
||
82 | } |
||
83 |