1 | <?php namespace Nwidart\LaravelBroadway\Registries; |
||
5 | class EventRegistry extends BaseRegistry implements Registry |
||
6 | { |
||
7 | /** |
||
8 | * @var EventBus |
||
9 | */ |
||
10 | private $eventBus; |
||
11 | |||
12 | public function __construct(EventBus $eventBus) |
||
16 | |||
17 | /** |
||
18 | * Subscribe the given array of projectors on the event bus |
||
19 | * @param array $projectors |
||
20 | */ |
||
21 | public function subscribe($projectors) |
||
29 | } |
||
30 |