1 | <?php |
||
8 | class Kernel extends ConsoleKernel |
||
9 | { |
||
10 | /** |
||
11 | * The Artisan commands provided by your application. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | protected $commands = [ |
||
16 | \Pterodactyl\Console\Commands\Inspire::class, |
||
17 | \Pterodactyl\Console\Commands\MakeUser::class, |
||
18 | \Pterodactyl\Console\Commands\ShowVersion::class, |
||
19 | \Pterodactyl\Console\Commands\UpdateEnvironment::class, |
||
20 | \Pterodactyl\Console\Commands\RunTasks::class, |
||
21 | \Pterodactyl\Console\Commands\ClearTasks::class, |
||
22 | \Pterodactyl\Console\Commands\ClearServices::class, |
||
23 | \Pterodactyl\Console\Commands\UpdateEmailSettings::class, |
||
24 | \Pterodactyl\Console\Commands\CleanServiceBackup::class, |
||
25 | \Pterodactyl\Console\Commands\AddNode::class, |
||
26 | \Pterodactyl\Console\Commands\AddLocation::class, |
||
27 | \Pterodactyl\Console\Commands\RebuildServer::class, |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * Define the application's command schedule. |
||
32 | * |
||
33 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
34 | * @return void |
||
35 | */ |
||
36 | protected function schedule(Schedule $schedule) |
||
42 | } |
||
43 |