Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class ProviderProvider implements ProviderInterface |
||
11 | { |
||
12 | /** @var InjectorInterface */ |
||
13 | private $injector; |
||
14 | |||
15 | /** @var Set<object> */ |
||
16 | private $set; |
||
17 | |||
18 | /** @param Set<object> $set */ |
||
19 | public function __construct(InjectorInterface $injector, Set $set) |
||
20 | { |
||
21 | $this->injector = $injector; |
||
22 | $this->set = $set; |
||
23 | } |
||
24 | |||
25 | /** @return mixed */ |
||
26 | public function get() |
||
29 | } |
||
30 | } |
||
31 |