We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9435827 commit 56d433aCopy full SHA for 56d433a
src/Illuminate/Queue/QueueServiceProvider.php
@@ -235,7 +235,8 @@ protected function registerFailedJobServices()
235
$this->app->singleton('queue.failer', function ($app) {
236
$config = $app['config']['queue.failed'];
237
238
- if (! isset($config['driver']) || $config['driver'] === 'null') {
+ if (array_key_exists('driver', $config) &&
239
+ (is_null($config['driver']) || $config['driver'] === 'null')) {
240
return new NullFailedJobProvider;
241
}
242
0 commit comments