Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 2 | public function handleDependencies(DependencyProviderInterface $dependencyProvider): void |
|
26 | { |
||
27 | $dependencyProvider[self::PATH_PROVIDER_COLLECTION] = function () { |
||
28 | 2 | return new PathCollection( |
|
29 | 2 | $this->getPathProviderList() |
|
30 | ); |
||
31 | }; |
||
32 | |||
33 | $dependencyProvider[self::TWIG_EXTENSIONS] = function () { |
||
34 | 2 | return new TwigExtensionCollection( |
|
35 | 2 | $this->getTwigExtensions() |
|
36 | ); |
||
55 | } |