Passed
Pull Request — master (#3)
by Koldo
02:28
created
src/Template/ComposerJson.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,12 +63,12 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.
src/ApplicationType/MicroAppInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@
 block discarded – undo
48 48
         $installationPath = $this->installationPathQuestion->ask(
49 49
             dirname($this->composer->getInstallationManager()->getInstallPath(
50 50
                 $this->composer->getPackage()
51
-            ), 3) . '/'
51
+            ), 3).'/'
52 52
         );
53 53
 
54 54
         $this->fileStructure->create($installationPath);
55 55
 
56 56
         foreach (self::COMMUNITY_FILES as $fileToDelete) {
57
-            $filePath = $installationPath . $fileToDelete;
57
+            $filePath = $installationPath.$fileToDelete;
58 58
             if (file_exists($filePath)) {
59 59
                 unlink($filePath);
60 60
             }
Please login to merge, or discard this patch.