Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 1 | private function addTemplateByFilenameMap(Container $container): void |
|
37 | { |
||
38 | 1 | $container->set(self::TEMPLATE_BY_FILENAME_MAP, fn () => [ |
|
39 | 1 | FilenameSanitizer::FACADE => $this->getConfig()->getFacadeMakerTemplate(), |
|
40 | 1 | FilenameSanitizer::FACTORY => $this->getConfig()->getFactoryMakerTemplate(), |
|
41 | 1 | FilenameSanitizer::CONFIG => $this->getConfig()->getConfigMakerTemplate(), |
|
42 | 1 | FilenameSanitizer::DEPENDENCY_PROVIDER => $this->getConfig()->getDependencyProviderMakerTemplate(), |
|
43 | ]); |
||
46 |