Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function create( |
||
27 | array $typeDefinitionsMap, |
||
28 | ?callable $resolveTypeFunction = null, |
||
29 | ?ResolverRegistryInterface $resolverRegistry = null |
||
30 | ): DefinitionBuilderInterface { |
||
31 | return new DefinitionBuilder( |
||
32 | $typeDefinitionsMap, |
||
33 | $resolverRegistry ?? new ResolverMapRegistry(), |
||
34 | $resolveTypeFunction, |
||
35 | $this->cache |
||
36 | ); |
||
39 |