Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ProviderFactory implements ProviderFactoryInterface |
||
19 | { |
||
20 | 1 | public function __construct( |
|
21 | private readonly AutowireHelperInterface $autowireHelper, |
||
22 | private readonly EventListenerClassLocatorFactoryInterface $eventListenerClassLocatorFactory |
||
23 | ) { |
||
24 | 1 | } |
|
25 | |||
26 | /** |
||
27 | *{@inheritDoc} |
||
28 | */ |
||
29 | 1 | public function create(): ListenerProviderInterface |
|
38 | 1 | ); |
|
39 | } |
||
41 |