| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class EventDispatcherInterfaceProxy implements EventDispatcherInterface |
||
| 11 | { |
||
| 12 | public function __construct( |
||
| 13 | private EventDispatcherInterface $dispatcher, |
||
| 14 | private EventCollectorInterface $collector |
||
| 15 | ) { |
||
| 16 | } |
||
| 17 | |||
| 18 | 1 | public function dispatch(object $event): object |
|
| 25 | } |
||
| 26 | } |
||
| 27 |