load(__DIR__ . '/Commands'); } /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule */ protected function schedule(Schedule $schedule) { $schedule->command('p:schedule:process')->everyMinute()->withoutOverlapping(); $schedule->command('p:maintenance:clean-service-backups')->daily(); } }