/
/
home
/
u523034047
/
domains
/
wasms.shop
/
public_html
/
varified
/
app
/
Console
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.60
PHP 8.3.16
Dir:
/home/u523034047/domains/wasms.shop/public_html/varified/app/Console
Edit:
/home/u523034047/domains/wasms.shop/public_html/varified/app/Console/Kernel.php
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected $commands = [ Commands\ScheduleCron::class ]; protected function schedule(Schedule $schedule) { $schedule->command('schedule:cron')->everyFiveMinutes()->withoutOverlapping(); $schedule->command('subscription:check')->daily()->withoutOverlapping(); $schedule->command('start:blast')->everyMinute()->withoutOverlapping(); // $schedule->command('schedule:blast')->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }
Ukuran: 1016 B