1 | <?php |
||
28 | trait ListenerTrait |
||
29 | { |
||
30 | /** |
||
31 | * Events listening |
||
32 | * |
||
33 | * @var array |
||
34 | * @access protected |
||
35 | */ |
||
36 | protected $events_listening = []; |
||
37 | |||
38 | public function eventsListening()/*# : array */ |
||
42 | |||
43 | /** |
||
44 | * {@inheritDoc} |
||
45 | */ |
||
46 | public function registerEvent(/*# string */ $eventName, $handler) |
||
55 | } |
||
56 |