| 1 | <?php |
||
| 19 | final class ListenerRegistry implements ListenerRegistryInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | private $listeners = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param ListenerInterface $listener |
||
| 28 | */ |
||
| 29 | public function addListener(ListenerInterface $listener) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function getListener($name) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | public function getListeners() |
||
| 55 | } |
||
| 56 |