command('disposable:update')->weekly(); $schedule->command('clean:directories')->hourly(); $schedule->exec('php '.base_path().'/misc/testing/DB/checkUsers.php')->twiceDaily(1, 13); $schedule->command('telescope:prune')->daily(); $schedule->command('horizon:snapshot')->everyFiveMinutes(); if (config('nntmux.purge_inactive_users') === true) { $schedule->job(new RemoveInactiveAccounts())->daily(); } } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }