Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class MapProvider implements ProviderInterface |
||
14 | { |
||
15 | /** @var LazyCollection */ |
||
16 | private $lazyCollection; |
||
17 | |||
18 | /** @var InjectionPointInterface */ |
||
19 | private $ip; |
||
20 | |||
21 | /** @var InjectorInterface */ |
||
22 | private $injector; |
||
23 | |||
24 | public function __construct(InjectionPointInterface $ip, LazyCollection $lazyCollection, InjectorInterface $injector) |
||
29 | } |
||
30 | |||
31 | public function get(): Map |
||
45 |