REBELinBLUE\Deployer\Console\Kernel::schedule PHP Метод

schedule() защищенный Метод

Define the application's command schedule.
protected schedule ( Illuminate\Console\Scheduling\Schedule $schedule )
$schedule Illuminate\Console\Scheduling\Schedule
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('deployer:heartbeats')->everyFiveMinutes()->withoutOverlapping();
        $schedule->command('deployer:update-mirrors')->everyFiveMinutes()->withoutOverlapping();
        $schedule->command('deployer:checkurls')->everyFiveMinutes()->withoutOverlapping();
        $schedule->command('deployer:purge-avatars')->weekly()->sundays()->at('00:30')->withoutOverlapping();
        $schedule->command('deployer:purge-mirrors')->daily()->withoutOverlapping();
        $schedule->command('deployer:purge-temp')->hourly()->withoutOverlapping();
    }