Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | private function addTemplateByFilenameMap(Container $container): void |
||
41 | { |
||
42 | $container->set(self::TEMPLATE_BY_FILENAME_MAP, fn (): array => [ |
||
43 | FilenameSanitizer::FACADE => $this->getConfig()->getFacadeMakerTemplate(), |
||
|
|||
44 | FilenameSanitizer::FACTORY => $this->getConfig()->getFactoryMakerTemplate(), |
||
45 | FilenameSanitizer::CONFIG => $this->getConfig()->getConfigMakerTemplate(), |
||
46 | FilenameSanitizer::PROVIDER => $this->getConfig()->getProviderMakerTemplate(), |
||
47 | ]); |
||
50 |