command('calculate:space')->hourlyAt(10)->withoutOverlapping(); //$schedule->command('calculate:traffic')->hourlyAt(10)->withoutOverlapping(); $schedule->command('calculate:traffic')->everyFiveMinutes()->withoutOverlapping(); $schedule->command('exit:read')->everyMinute()->withoutOverlapping(); $schedule->command('theme:scan')->everyMinute()->withoutOverlapping(); $schedule->command("server:set")->everyMinute()->withoutOverlapping(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }