| 1 | <?php |
||
| 10 | class EmitterFactory |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \Symfony\Component\DependencyInjection\ContainerInterface |
||
| 14 | */ |
||
| 15 | private $container; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * EmitterFactory constructor. |
||
| 19 | * @param \Symfony\Component\DependencyInjection\ContainerInterface $container |
||
| 20 | */ |
||
| 21 | public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param \Mleko\Narrator\EventNameExtractor $nameExtractor |
||
| 28 | * @param $listenerDefinitions |
||
| 29 | * @return \Mleko\Narrator\SimpleEmitter |
||
| 30 | */ |
||
| 31 | public function createEmitter(\Mleko\Narrator\EventNameExtractor $nameExtractor, $listenerDefinitions) |
||
| 41 | |||
| 42 | } |
||
| 43 |