Passed
Pull Request — master (#3)
by ྅༻ Ǭɀħ
02:20
created
src/ComposerInstaller/Commands/CommandRemovePlugin.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
 EOT;
38 38
 
39 39
         $this->setName($name)
40
-             ->setDescription($desc)
41
-             ->setDefinition($def)
42
-             ->setHelp($help);
40
+                ->setDescription($desc)
41
+                ->setDefinition($def)
42
+                ->setHelp($help);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $name = 'remove-plugin';
29 29
         $desc = '<warning>Removes</warning> a <info>YOURLS plugin</info>';
30
-        $def  = [ new InputArgument('plugins', InputArgument::IS_ARRAY, 'YOURLS plugin(s) to remove') ];
30
+        $def  = [new InputArgument('plugins', InputArgument::IS_ARRAY, 'YOURLS plugin(s) to remove')];
31 31
         $help = <<<EOT
32 32
 Example: <comment>`composer remove-plugin ozh/example-plugin`</comment>
33 33
 This command <warning>deletes</warning> plugins from <comment>user/plugins/</comment>, including dependencies,
Please login to merge, or discard this patch.
src/ComposerInstaller/Commands/CommandAddPlugin.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $name = 'add-plugin';
29 29
         $desc = '<warning>Downloads</warning> a <info>YOURLS plugin</info> and add it to your <comment>`user/composer.json`</comment>';
30
-        $def  = [ new InputArgument('plugins', InputArgument::IS_ARRAY, 'YOURLS plugin(s) to download') ];
30
+        $def  = [new InputArgument('plugins', InputArgument::IS_ARRAY, 'YOURLS plugin(s) to download')];
31 31
         $help = <<<EOT
32 32
 Example: <comment>`composer add-plugin ozh/example-plugin`</comment>
33 33
 This command downloads plugins in the appropriate subfolder of <comment>user/plugins/</comment>, adds them to
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
 EOT;
38 38
 
39 39
         $this->setName($name)
40
-             ->setDescription($desc)
41
-             ->setDefinition($def)
42
-             ->setHelp($help);
40
+                ->setDescription($desc)
41
+                ->setDefinition($def)
42
+                ->setHelp($help);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.