@@ -181,6 +181,9 @@ |
||
181 | 181 | } |
182 | 182 | } |
183 | 183 | |
184 | + /** |
|
185 | + * @param string $commandline |
|
186 | + */ |
|
184 | 187 | public static function runProcess(Event $event, $commandline) { |
185 | 188 | if ($event->getIO()->isVerbose() === TRUE) |
186 | 189 | $event->getIO()->write(sprintf('Running <info>%s</info>', $commandline)); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | |
154 | 154 | public static function SetfaclPermissionsSetter(Event $event, $path) { |
155 | 155 | if (!is_dir($path)) |
156 | - mkdir($path, 0777, true); |
|
156 | + mkdir($path, 0777, TRUE); |
|
157 | 157 | if (!is_dir($path)) |
158 | 158 | throw new \Exception('Path Not Found: '.$path); |
159 | 159 | $http_user = self::getHttpdUser($event); |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | |
164 | 164 | public static function ChmodPermissionsSetter(Event $event, $path) { |
165 | 165 | if (!is_dir($path)) |
166 | - mkdir($path, 0777, true); |
|
166 | + mkdir($path, 0777, TRUE); |
|
167 | 167 | if (!is_dir($path)) |
168 | 168 | throw new \Exception('Path Not Found: '.$path); |
169 | 169 | $http_user = self::getHttpdUser($event); |