diff --git a/src/JobPipeline.php b/src/JobPipeline.php index a3f7bc3..1b904ca 100644 --- a/src/JobPipeline.php +++ b/src/JobPipeline.php @@ -65,7 +65,7 @@ class JobPipeline implements ShouldQueue } try { - $result = app()->call($job); + $result = app()->call($job, $this->passable); } catch (Throwable $exception) { if (method_exists(get_class($job[0]), 'failed')) { call_user_func_array([$job[0], 'failed'], [$exception]);