File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Queue/Middleware
Upload
[..]
SkipIfBatchCancelled.php (383 B)
Edit
Rename
Del
Edit: SkipIfBatchCancelled.php
<?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); } }
Simpan