Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class ConfigurationResolverFactory { |
||
17 | /** |
||
18 | * @var RegistryInterface |
||
19 | */ |
||
20 | private $doctrine; |
||
21 | |||
22 | /** |
||
23 | * @var DefinitionRegistry |
||
24 | */ |
||
25 | private $registry; |
||
26 | |||
27 | public function __construct(RegistryInterface $doctrine, DefinitionRegistry $registry) { |
||
28 | $this->doctrine = $doctrine; |
||
29 | $this->registry = $registry; |
||
30 | } |
||
31 | |||
32 | public function create(string $key) { |
||
36 | ); |
||
37 | } |
||
39 |