| 1 | <?php |
||
| 13 | class Kernel extends ConsoleKernel |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * The Artisan commands provided by your application. |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $commands = [ |
||
| 21 | Commands\TruncateTables::class, |
||
| 22 | Commands\IndexSearch::class, |
||
| 23 | Commands\setReldate::class, |
||
| 24 | Commands\setVotes::class, |
||
| 25 | Commands\PlayerCreateInfo::class, |
||
| 26 | Commands\PlayerRar2Zip::class, |
||
| 27 | Commands\PT::class, |
||
| 28 | Commands\TestSearch::class, |
||
| 29 | Commands\GetMissingGameFilesCommand::class, |
||
| 30 | ]; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Define the application's command schedule. |
||
| 34 | * |
||
| 35 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | protected function schedule(Schedule $schedule) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Register the Closure based commands for the application. |
||
| 47 | * |
||
| 48 | * @return void |
||
| 49 | */ |
||
| 50 | protected function commands() |
||
| 54 | } |
||
| 55 |