1 | <?php |
||
7 | class Event |
||
8 | { |
||
9 | private $dispatcher; |
||
10 | |||
11 | public function __construct(Dispatcher $dispatcher) |
||
15 | |||
16 | public function fire($event, $context) |
||
23 | |||
24 | public function fireChanges(Spy $spy) |
||
30 | |||
31 | public function subscribe($event, $listener) |
||
38 | |||
39 | public function unsubscribe($event, $listener) |
||
46 | } |
||
47 |