| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class EventDispatcher implements EventDispatcherInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var SymfonyEventDispatcherInterface |
||
| 23 | */ |
||
| 24 | private $eventDispatcher; |
||
| 25 | /** |
||
| 26 | * @var EventNameFactoryInterface |
||
| 27 | */ |
||
| 28 | private $eventNameFactory; |
||
| 29 | |||
| 30 | 1 | public function __construct( |
|
| 36 | 1 | } |
|
| 37 | |||
| 38 | 1 | public function dispatch(string $eventName, Event $event): void |
|
| 47 |