@@ -37,9 +37,9 @@ |
||
| 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 | /** |
@@ -27,7 +27,7 @@ |
||
| 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, |
@@ -37,9 +37,9 @@ |
||
| 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 | /** |
@@ -27,7 +27,7 @@ |
||
| 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 |