@@ -63,12 +63,12 @@ |
||
63 | 63 | '{(^\s*+")App(\\\\\\\\":\s.*$\n)}m', |
64 | 64 | '{(^\s*+")App(\\\\\\\\Test\\\\\\\\":\s.*$\n)}m', |
65 | 65 | ], |
66 | - '$1' . $namespace . '$2', |
|
66 | + '$1'.$namespace.'$2', |
|
67 | 67 | $contents, |
68 | 68 | 1 |
69 | 69 | ); |
70 | 70 | |
71 | - file_put_contents($installationPath . '/composer.json', $contents); |
|
71 | + file_put_contents($installationPath.'/composer.json', $contents); |
|
72 | 72 | |
73 | 73 | $this->runInstall->exec(sprintf( |
74 | 74 | 'cd %s && rm -rf vendor/ composer.lock && composer install --ansi', |
@@ -66,7 +66,7 @@ |
||
66 | 66 | protected function removeCommunityFiles(string $installationPath): void |
67 | 67 | { |
68 | 68 | foreach (self::COMMUNITY_FILES as $fileToDelete) { |
69 | - $filePath = $installationPath . $fileToDelete; |
|
69 | + $filePath = $installationPath.$fileToDelete; |
|
70 | 70 | if (file_exists($filePath)) { |
71 | 71 | unlink($filePath); |
72 | 72 | } |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $installationPath = $this->installationPathQuestion->ask( |
42 | 42 | dirname($this->composer->getInstallationManager()->getInstallPath( |
43 | 43 | $this->composer->getPackage() |
44 | - ), 3) . '/' |
|
44 | + ), 3).'/' |
|
45 | 45 | ); |
46 | 46 | |
47 | 47 | $this->dockerInstaller->install($installationPath); |