@@ -61,7 +61,7 @@ |
||
61 | 61 | $stringOutput = $this->output->fetch(); |
62 | 62 | if (false === strstr($stringOutput, 'There is no installed package depending on ')) { |
63 | 63 | $output = explode(PHP_EOL, $stringOutput); |
64 | - $output = array_map(function ($line) { |
|
64 | + $output = array_map(function($line) { |
|
65 | 65 | return ' '.$line; |
66 | 66 | }, $output); |
67 | 67 |
@@ -12,7 +12,6 @@ |
||
12 | 12 | use Composer\Repository\RepositoryManager; |
13 | 13 | use Composer\Script\Event; |
14 | 14 | use Composer\Script\ScriptEvents; |
15 | -use Symfony\Component\OptionsResolver\OptionsResolver; |
|
16 | 15 | |
17 | 16 | /** |
18 | 17 | * @author Sullivan Senechal <[email protected]> |