| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 31 | private function getCreator(): BootstrapCreator |
||
| 32 | { |
||
| 33 | $namespaceHelper = new NamespaceHelper(); |
||
| 34 | $config = new Config(ConfigTest::SERVER); |
||
| 35 | |||
| 36 | $creator = new BootstrapCreator( |
||
| 37 | new FileFactory($namespaceHelper, $config), |
||
| 38 | $namespaceHelper, |
||
| 39 | new Writer(), |
||
| 40 | $config, |
||
| 41 | new FindReplaceFactory() |
||
| 42 | ); |
||
| 43 | $creator->setProjectRootDirectory(AbstractTest::VAR_PATH); |
||
| 44 | |||
| 45 | return $creator; |
||
| 46 | } |
||
| 48 |