command('inspire')->hourly(); // dispatch HostCost job $schedule->job(new HostCost())->everyFiveMinutes(); $schedule->job(new UserSave())->everyTenMinutes(); $schedule->job(new Remote\FetchModule())->everyMinute()->onOneServer(); $schedule->job(new Remote\PushHost())->everyMinute()->onOneServer(); $schedule->job(new Remote\PushWorkOrder())->everyMinute()->onOneServer(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }