Files
watchstate/config/commands.php
Abdulmhsen B. A. A 5644759227 Added Task Scheduler.
2022-02-12 19:10:00 +03:00

30 lines
956 B
PHP

<?php
declare(strict_types=1);
use App\Commands\Config\DumpCommand;
use App\Commands\Config\GenerateCommand;
use App\Commands\Config\PHPCommand;
use App\Commands\Scheduler\Lists;
use App\Commands\Scheduler\Run;
use App\Commands\Scheduler\RunClosure;
use App\Commands\State\ExportCommand;
use App\Commands\State\ImportCommand;
use App\Commands\Storage\MaintenanceCommand;
use App\Commands\Storage\MakeCommand;
use App\Commands\Storage\MigrationsCommand;
return [
'config:dump' => DumpCommand::class,
'config:generate' => GenerateCommand::class,
'config:php' => PHPCommand::class,
'state:import' => ImportCommand::class,
'state:export' => ExportCommand::class,
'storage:maintenance' => MaintenanceCommand::class,
'storage:migrations' => MigrationsCommand::class,
'storage:make' => MakeCommand::class,
'scheduler:list' => Lists::class,
'scheduler:run' => Run::class,
'scheduler:closure' => RunClosure::class,
];