Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e298cac

Browse files
oriceonbarryvdh
authored andcommitted
Laravel 5.5 support (barryvdh#70)
* Support Laravel 5.5 Changed fire() to handle() method * Laravel 5.5 Support
1 parent 04d3519 commit e298cac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

readme.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# Laravel 5.4 Async Queue Driver
1+
# Laravel 5.5 Async Queue Driver
22

33
## Push a function/closure to the background.
44

55

6+
### For Laravel 5.4, check the [0.6 branch](https://github.com/barryvdh/laravel-async-queue/tree/0.6)
7+
68
### For Laravel 5.3, check the [0.5 branch](https://github.com/barryvdh/laravel-async-queue/tree/0.5)
79

810
Just like the 'sync' driver, this is not a real queue driver. It is always fired immediatly.

src/Console/AsyncCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(Worker $worker)
5151
* @param WorkerOptions $options
5252
* @return void
5353
*/
54-
public function fire(WorkerOptions $options)
54+
public function handle(WorkerOptions $options)
5555
{
5656
$id = $this->argument('id');
5757
$connection = $this->argument('connection');

0 commit comments

Comments
 (0)