1 | <?php |
||
7 | class IlluminateQueueHandler |
||
8 | { |
||
9 | protected $bus; |
||
10 | |||
11 | /** |
||
12 | * @param CommandBus $bus |
||
13 | */ |
||
14 | public function __construct(CommandBus $bus) |
||
18 | |||
19 | /** |
||
20 | * @param \Illuminate\Contracts\Queue\Job $job |
||
21 | * @param $serializedCommand |
||
22 | */ |
||
23 | public function fire($job, $serializedCommand) |
||
31 | } |
||
32 |