| 1 | <?php |
||
| 6 | class FastEvmProxy implements EventManagerInterface |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var EventManager |
||
| 10 | */ |
||
| 11 | private $eventManager; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Proxy EventManager |
||
| 15 | */ |
||
| 16 | public function __construct() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritDoc} |
||
| 23 | */ |
||
| 24 | public function trigger(EventInterface $event) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritDoc} |
||
| 32 | */ |
||
| 33 | public function attach($eventName, callable $listener, $priority = 0) |
||
| 38 | } |
||
| 39 |