1 | <?php |
||
9 | class EventHandlerFailedHandlingEvent |
||
10 | { |
||
11 | /** @var \Spatie\EventProjector\EventHandlers\EventHandler */ |
||
12 | public $eventHandler; |
||
13 | |||
14 | /** @var \Spatie\EventProjector\Models\StoredEvent */ |
||
15 | public $storedEvent; |
||
16 | |||
17 | /** @var \Exception */ |
||
18 | public $exception; |
||
19 | |||
20 | public function __construct(EventHandler $eventHandler, StoredEvent $storedEvent, Exception $exception) |
||
28 | } |
||
29 |