Completed
Push — master ( a06f3d...7dd891 )
by Joe
06:11
created
src/Plugin.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
 	 */
227 227
 	public static function EnsureDirExists(Event $event, $path) {
228 228
 		if (!is_dir($path)) {
229
-			mkdir($path, 0777, true);
229
+			mkdir($path, 0777, TRUE);
230 230
 			if (!is_dir($path))
231 231
 				throw new \Exception('Path Not Found: '.$path);
232 232
 			if ($event->getIO()->isVerbose() === TRUE)
Please login to merge, or discard this patch.