17 lines
323 B
PHP
17 lines
323 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Console;
|
||
|
|
|
||
|
|
use Illuminate\Console\Scheduling\Schedule;
|
||
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
||
|
|
|
||
|
|
class Kernel extends ConsoleKernel
|
||
|
|
{
|
||
|
|
protected function schedule(Schedule $schedule): void
|
||
|
|
{
|
||
|
|
// if (app()->environment('local')) {
|
||
|
|
// } else {
|
||
|
|
// }
|
||
|
|
}
|
||
|
|
}
|