Skip to content

Commit 3c46e42

Browse files
authoredOct 16, 2019
Updated Illuminate\Queue\Worker contructor params
Illuminate\Queue\Worker::__constructor now requires an extra callable $isDownForMaintenance
1 parent 8c2c88c commit 3c46e42

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎src/EnqueueServiceProvider.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,12 @@ private function bootInteropQueueDriver()
6565

6666
$this->app->extend('queue.worker', function ($worker, $app) {
6767
return new Worker(
68-
$app['queue'], $app['events'], $app[ExceptionHandler::class]
68+
$app['queue'],
69+
$app['events'],
70+
$app[ExceptionHandler::class],
71+
function () use ($app) {
72+
return $app->isDownForMaintenance();
73+
}
6974
);
7075
});
7176
}

0 commit comments

Comments
 (0)