1 | <?php |
||
20 | class EventProfilerListener implements SharedListenerAggregateInterface |
||
|
|||
21 | { |
||
22 | /** |
||
23 | * Event highest priority |
||
24 | */ |
||
25 | const HIGHEST_PRIORITY = 9999999999; |
||
26 | |||
27 | /** |
||
28 | * @var EventProfiler |
||
29 | */ |
||
30 | protected $eventProfiler; |
||
31 | |||
32 | /** |
||
33 | * @var \Zend\Stdlib\CallbackHandler[] |
||
34 | */ |
||
35 | protected $listeners = []; |
||
36 | |||
37 | /** |
||
38 | * @param object|EventProfiler $eventProfiler |
||
39 | */ |
||
40 | public function __construct(EventProfiler $eventProfiler) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function attachShared(SharedEventManagerInterface $events) |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function detachShared(SharedEventManagerInterface $events) |
||
64 | |||
65 | /** |
||
66 | * @param EventInterface $event |
||
67 | */ |
||
68 | public function onAnyEvent(EventInterface $event) |
||
72 | } |
||
73 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.