Completed
Push — master ( 07b0df...49d7fe )
by judicael
04:07
created
bundles/src/Batch/app/Controller/Generator.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
 
73 73
             if (!file_exists($sPrivatePath.'Controller')) {
74 74
 
75
-                mkdir($sPublicPath . 'css', 0777, true);
76
-                mkdir($sPublicPath . 'js', 0777, true);
77
-                mkdir($sPublicPath . 'img', 0777, true);
75
+                mkdir($sPublicPath.'css', 0777, true);
76
+                mkdir($sPublicPath.'js', 0777, true);
77
+                mkdir($sPublicPath.'img', 0777, true);
78 78
             }
79 79
             else {
80 80
 
81
-                echo 'The Project (public part) ' . $sPrivatePath . " exists\n";
81
+                echo 'The Project (public part) '.$sPrivatePath." exists\n";
82 82
             }
83 83
         }
84 84
 
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
 
92 92
 			if (!file_exists($sPrivatePath.'Controller')) {
93 93
 
94
-				mkdir($sPrivatePath . 'Controller', 0777, true);
95
-				mkdir($sPrivatePath . 'Entity', 0777, true);
96
-				mkdir($sPrivatePath . 'Model', 0777, true);
97
-				mkdir($sPrivatePath . 'View', 0777, true);
98
-				mkdir($sPrivatePath . 'conf', 0777, true);
99
-				mkdir($sPrivatePath . 'common', 0777, true);
94
+				mkdir($sPrivatePath.'Controller', 0777, true);
95
+				mkdir($sPrivatePath.'Entity', 0777, true);
96
+				mkdir($sPrivatePath.'Model', 0777, true);
97
+				mkdir($sPrivatePath.'View', 0777, true);
98
+				mkdir($sPrivatePath.'conf', 0777, true);
99
+				mkdir($sPrivatePath.'common', 0777, true);
100 100
 
101 101
                 $sContent = file_get_contents(__DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'common'.DIRECTORY_SEPARATOR.'Controller.php');
102 102
                 $sContent = str_replace('Batch', $sPortal, $sContent);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 			}
134 134
 			else {
135 135
 
136
-				echo 'The Project (private part) ' . $sPrivatePath . " exists\n";
136
+				echo 'The Project (private part) '.$sPrivatePath." exists\n";
137 137
 			}
138 138
 		}
139 139
 
Please login to merge, or discard this patch.
bundles/core/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	public static function get(string $sName, string $sPortal = null, bool $bNoDoRedirect = false)
51 51
 	{
52 52
         $aDirectories = [];
53
-        $sJsonFile='';
53
+        $sJsonFile = '';
54 54
 
55 55
         if ($bNoDoRedirect === true) { $sNameCache = $sName.'_true'; } else { $sNameCache = $sName; }
56 56
 	    
Please login to merge, or discard this patch.