Skip to content

Commit 43fa288

Browse files
authored
Merge pull request #23 from dangreaves/laravel-55-binds-worker-fix
Include Laravel 5.5 in Laravel53Worker implementation
2 parents b055919 + 1b4ee41 commit 43fa288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Integrations/BindsWorker.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trait BindsWorker
1616
* @var array
1717
*/
1818
protected $workerImplementations = [
19-
'5\.[34].*' => Laravel53Worker::class
19+
'5\.[345].*' => Laravel53Worker::class
2020
];
2121

2222
/**
@@ -39,4 +39,4 @@ protected function bindWorker()
3939
{
4040
$this->app->bind(WorkerInterface::class, $this->findWorkerClass($this->app->version()));
4141
}
42-
}
42+
}

0 commit comments

Comments
 (0)