@@ -11,10 +11,10 @@ |
||
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 |
@@ -226,7 +226,7 @@ |
||
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) |