| 1 | <?php |
||
| 7 | class ZendEvmProxy implements EventManagerInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var EventManager |
||
| 11 | */ |
||
| 12 | private $eventManager; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Proxy Zend\EventManager\EventManager |
||
| 16 | */ |
||
| 17 | 19 | public function __construct() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritDoc} |
||
| 24 | */ |
||
| 25 | 14 | public function trigger(EventInterface $event) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritDoc} |
||
| 36 | */ |
||
| 37 | 19 | public function attach($eventName, callable $listener, $priority = 0) |
|
| 42 | } |
||
| 43 |