@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | * @param string $srcPath |
| 222 | 222 | * @param string $dstPath |
| 223 | 223 | */ |
| 224 | - private function processTemplates(string $srcPath, string &$dstPath){ |
|
| 224 | + private function processTemplates(string $srcPath, string &$dstPath) { |
|
| 225 | 225 | $dstPath = str_replace('.php.tpl', '.php', $dstPath); |
| 226 | 226 | $content = $this->fs->get($srcPath); |
| 227 | 227 | $processedContent = $this->replacePlaceholders($content); |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | private function replacePlaceholders(string $content): string |
| 236 | 236 | { |
| 237 | 237 | $placeholders = [ |
| 238 | - '{{MODULE_NAMESPACE}}' => module_base_namespace() .'\\' . $this->getModuleName(), |
|
| 238 | + '{{MODULE_NAMESPACE}}' => module_base_namespace() . '\\' . $this->getModuleName(), |
|
| 239 | 239 | '{{MODULE_NAME}}' => $this->getModuleName(), |
| 240 | 240 | ]; |
| 241 | 241 | |