@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | // The very first step is to reorder the packages alphabetically. |
28 | 28 | // This is to ensure the same order every time, even between packages that are unrelated. |
29 | - usort($unorderedPackagesList, function (PackageInterface $packageA, PackageInterface $packageB) { |
|
29 | + usort($unorderedPackagesList, function(PackageInterface $packageA, PackageInterface $packageB) { |
|
30 | 30 | return strcmp($packageA->getName(), $packageB->getName()); |
31 | 31 | }); |
32 | 32 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $this->assets[] = $operation->getAsset(); |
37 | 37 | } else { |
38 | 38 | // This is a remove! |
39 | - $this->assets = array_values(array_filter($this->assets, function (Asset $asset) use ($operation) { |
|
39 | + $this->assets = array_values(array_filter($this->assets, function(Asset $asset) use ($operation) { |
|
40 | 40 | return $asset->getValue() !== $operation->getAsset()->getValue(); |
41 | 41 | })); |
42 | 42 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | // Let's order assets by priority. |
57 | - $this->stableSort($this->assets, function (Asset $asset1, Asset $asset2) { |
|
57 | + $this->stableSort($this->assets, function(Asset $asset1, Asset $asset2) { |
|
58 | 58 | return $asset2->getPriority() <=> $asset1->getPriority(); |
59 | 59 | }); |
60 | 60 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function getValues() : array |
131 | 131 | { |
132 | - return array_map(function (Asset $asset) { |
|
132 | + return array_map(function(Asset $asset) { |
|
133 | 133 | return $asset->getValue(); |
134 | 134 | }, $this->getAssets()); |
135 | 135 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public function jsonSerialize() |
145 | 145 | { |
146 | - return array_map(function (Asset $asset) { |
|
146 | + return array_map(function(Asset $asset) { |
|
147 | 147 | return $asset->jsonSerialize(); |
148 | 148 | }, $this->getAssets()); |
149 | 149 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | */ |
48 | 48 | public static function fromArray(string $name, array $assetsArray) : ImmutableAssetType |
49 | 49 | { |
50 | - $assets = array_map(function (array $assetArray) { |
|
50 | + $assets = array_map(function(array $assetArray) { |
|
51 | 51 | return Asset::fromArray($assetArray); |
52 | 52 | }, $assetsArray); |
53 | 53 | return new self($name, $assets); |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $output->writeln(sprintf('<error>Could not find the "%s" asset type.</error>', $assetTypeName)); |
34 | 34 | return; |
35 | 35 | } |
36 | - $assetTypes = [ $assetTypes[$assetTypeName] ]; |
|
36 | + $assetTypes = [$assetTypes[$assetTypeName]]; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | switch ($input->getOption('format')) { |
@@ -5,15 +5,12 @@ |
||
5 | 5 | |
6 | 6 | |
7 | 7 | use Composer\Command\BaseCommand; |
8 | -use Composer\Factory; |
|
9 | 8 | use Symfony\Component\Console\Input\InputArgument; |
10 | 9 | use Symfony\Component\Console\Input\InputInterface; |
11 | 10 | use Symfony\Component\Console\Input\InputOption; |
12 | 11 | use Symfony\Component\Console\Output\OutputInterface; |
13 | 12 | use TheCodingMachine\Discovery\Asset; |
14 | 13 | use TheCodingMachine\Discovery\AssetOperation; |
15 | -use TheCodingMachine\Discovery\AssetsBuilder; |
|
16 | -use TheCodingMachine\Discovery\AssetType; |
|
17 | 14 | use TheCodingMachine\Discovery\DiscoveryFileLoader; |
18 | 15 | use TheCodingMachine\Discovery\Dumper; |
19 | 16 |
@@ -5,13 +5,8 @@ |
||
5 | 5 | |
6 | 6 | |
7 | 7 | use Composer\Command\BaseCommand; |
8 | -use Composer\Factory; |
|
9 | -use Symfony\Component\Console\Input\InputArgument; |
|
10 | 8 | use Symfony\Component\Console\Input\InputInterface; |
11 | -use Symfony\Component\Console\Input\InputOption; |
|
12 | 9 | use Symfony\Component\Console\Output\OutputInterface; |
13 | -use TheCodingMachine\Discovery\AssetsBuilder; |
|
14 | -use TheCodingMachine\Discovery\AssetType; |
|
15 | 10 | use TheCodingMachine\Discovery\Dumper; |
16 | 11 | |
17 | 12 | class DumpCommand extends BaseCommand |
@@ -6,17 +6,13 @@ |
||
6 | 6 | |
7 | 7 | use Composer\Composer; |
8 | 8 | use Composer\EventDispatcher\EventSubscriberInterface; |
9 | -use Composer\Factory; |
|
10 | 9 | use Composer\IO\IOInterface; |
11 | -use Composer\Package\PackageInterface; |
|
12 | 10 | use Composer\Plugin\Capability\CommandProvider; |
13 | 11 | use Composer\Plugin\Capable; |
14 | 12 | use Composer\Plugin\PluginInterface; |
15 | 13 | use Composer\Script\Event; |
16 | 14 | use Composer\Script\ScriptEvents; |
17 | -use Symfony\Component\Filesystem\Filesystem; |
|
18 | 15 | use TheCodingMachine\Discovery\Commands\CommandProvider as DiscoveryCommandProvider; |
19 | -use TheCodingMachine\Discovery\Commands\DumpCommand; |
|
20 | 16 | |
21 | 17 | class DiscoveryPlugin implements PluginInterface, EventSubscriberInterface, Capable |
22 | 18 | { |
@@ -112,7 +112,7 @@ |
||
112 | 112 | $simple = $this->asset->toSimpleArray(); |
113 | 113 | if ($this->operation === self::REMOVE) { |
114 | 114 | if (is_string($simple)) { |
115 | - $simple = [ 'value' => $simple ]; |
|
115 | + $simple = ['value' => $simple]; |
|
116 | 116 | } |
117 | 117 | $simple['action'] = self::REMOVE; |
118 | 118 | } |
@@ -4,15 +4,11 @@ |
||
4 | 4 | namespace TheCodingMachine\Discovery\Commands; |
5 | 5 | |
6 | 6 | |
7 | -use Composer\Command\BaseCommand; |
|
8 | -use Composer\Factory; |
|
9 | 7 | use Symfony\Component\Console\Input\InputArgument; |
10 | 8 | use Symfony\Component\Console\Input\InputInterface; |
11 | -use Symfony\Component\Console\Input\InputOption; |
|
12 | 9 | use Symfony\Component\Console\Output\OutputInterface; |
13 | 10 | use TheCodingMachine\Discovery\Asset; |
14 | 11 | use TheCodingMachine\Discovery\AssetOperation; |
15 | -use TheCodingMachine\Discovery\AssetsBuilder; |
|
16 | 12 | use TheCodingMachine\Discovery\AssetType; |
17 | 13 | use TheCodingMachine\Discovery\DiscoveryFileLoader; |
18 | 14 | use TheCodingMachine\Discovery\Dumper; |