1 | <?php |
||
12 | class EventHandlerCollection |
||
13 | { |
||
14 | /** @var \Illuminate\Support\Collection */ |
||
15 | protected $eventHandlers; |
||
16 | |||
17 | public function __construct() |
||
21 | |||
22 | public function add(EventHandler $eventHandler) |
||
30 | |||
31 | public function all(): Collection |
||
35 | |||
36 | public function forEvent(StoredEvent $storedEvent): Collection |
||
42 | |||
43 | public function call(string $method) |
||
53 | } |
||
54 |