Completed
Push — master ( a06f3d...7dd891 )
by Joe
06:11
created
src/CommandProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 
12 12
 use Composer\Plugin\Capability\CommandProvider as CommandProviderCapability;
13 13
 use MyAdmin\Plugins\Command\Command;
14
-use MyAdmin\Plugins\Command\Parse;
15 14
 use MyAdmin\Plugins\Command\CreateUser;
16
-use MyAdmin\Plugins\Command\UpdatePlugins;
15
+use MyAdmin\Plugins\Command\Parse;
17 16
 use MyAdmin\Plugins\Command\SetPermissions;
17
+use MyAdmin\Plugins\Command\UpdatePlugins;
18 18
 
19 19
 /**
20 20
  * Class CommandProvider
Please login to merge, or discard this patch.
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.