Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function __construct( |
||
32 | Scoper $decoratedScoper, |
||
33 | string $prefix, |
||
34 | EnrichedReflector $enrichedReflector, |
||
35 | SymbolsRegistry $symbolsRegistry |
||
36 | ) { |
||
37 | $this->decoratedScoper = new SymfonyXmlScoper( |
||
38 | new SymfonyYamlScoper( |
||
39 | $decoratedScoper, |
||
40 | $prefix, |
||
41 | $enrichedReflector, |
||
42 | $symbolsRegistry, |
||
43 | ), |
||
44 | $prefix, |
||
45 | $enrichedReflector, |
||
46 | $symbolsRegistry, |
||
47 | ); |
||
60 |