| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class SymfonyEventDispatcher implements SymfonyEventDispatcherInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var EventDispatcherInterface |
||
| 30 | */ |
||
| 31 | private $eventDispatcher; |
||
| 32 | |||
| 33 | public function __construct(EventDispatcherInterface $eventDispatcher) |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | public function dispatch(object $event, string $eventName = null): object |
||
| 46 |