/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Console/Scheduling/ScheduleResumeCommand.php
43 строки
1 KB
Lucas Michot
[13.x] Use self::SUCCESS/self::FAILURE in console commands (#60928)
30 июл 2026, 23:27
Не верифицирован
30 июл 2026, 23:27
053a0f3
Код
Авторство
О чём код?
<?php namespace Illuminate\Console\Scheduling; use Illuminate\Console\Command; use Illuminate\Console\Events\ScheduleResumed; use Illuminate\Contracts\Cache\Repository as Cache; use Illuminate\Contracts\Events\Dispatcher; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'schedule:resume', aliases: ['schedule:continue'])] class ScheduleResumeCommand extends Command { /** * The console command description. * * @var string */ protected $description = 'Resume the schedule'; /** * The console command name aliases. * * @var list<string> */ protected $aliases = ['schedule:continue']; /** * Execute the console command. * * @return int */ public function handle(Cache $cache, Dispatcher $dispatcher) { $cache->forget('illuminate:schedule:paused'); $dispatcher->dispatch(new ScheduleResumed); $this->components->info('Scheduled task processing has resumed.'); return self::SUCCESS; } }