Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function createScoper(/* Configuration $configuration */): Scoper |
||
39 | { |
||
40 | return new PatchScoper( |
||
41 | new PhpScoper( |
||
42 | $this->parser, |
||
43 | new JsonFileScoper( |
||
44 | new InstalledPackagesScoper( |
||
45 | new SymfonyScoper( |
||
46 | new NullScoper() |
||
47 | ) |
||
48 | ) |
||
49 | ), |
||
50 | new TraverserFactory(new Reflector(/* Configuration $configuration */)) |
||
51 | ) |
||
55 |