42 lines
1014 B
PHP
42 lines
1014 B
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use App\Console\Commands\ImportLegacyUsers;
|
|
use App\Console\Commands\ImportCategories;
|
|
use App\Console\Commands\MigrateFeaturedWorks;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array<int, class-string>
|
|
*/
|
|
protected $commands = [
|
|
ImportLegacyUsers::class,
|
|
ImportCategories::class,
|
|
MigrateFeaturedWorks::class,
|
|
\App\Console\Commands\ResetAllUserPasswords::class,
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*/
|
|
protected function schedule(\Illuminate\Console\Scheduling\Schedule $schedule): void
|
|
{
|
|
// $schedule->command('inspire')->hourly();
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*/
|
|
protected function commands(): void
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|