/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Queue/Middleware/SkipIfBatchCancelled.php
22 строки
383 B
Craig Morris
[9.x] Add skip cancelled middleware (#45869)
30 янв 2023, 20:16
Не верифицирован
30 янв 2023, 20:16
f864b92
Код
Авторство
О чём код?
<?php namespace Illuminate\Queue\Middleware; class SkipIfBatchCancelled { /** * Process the job. * * @param mixed $job * @param callable $next * @return mixed */ public function handle($job, $next) { if (method_exists($job, 'batch') && $job->batch()?->cancelled()) { return; } $next($job); } }