@@ -154,7 +154,7 @@ |
||
154 | 154 | /** |
155 | 155 | * Returns package with given name if exists. |
156 | 156 | * @param string $name package name |
157 | - * @return \Composer\Package\PackageInterface|null |
|
157 | + * @return \Composer\Package\RootPackageInterface|PackageInterface|null |
|
158 | 158 | */ |
159 | 159 | public function findPackage($name) |
160 | 160 | { |
@@ -145,7 +145,7 @@ |
||
145 | 145 | public function onPreDependenciesSolving(InstallerEvent $event) |
146 | 146 | { |
147 | 147 | $pool = $event->getPool(); |
148 | - for ($i=1; $i<= $pool->count(); $i++) { |
|
148 | + for ($i = 1; $i <= $pool->count(); $i++) { |
|
149 | 149 | $package = $pool->packageById($i); |
150 | 150 | $this->removeAssetDependencies($package); |
151 | 151 | } |
@@ -14,12 +14,10 @@ |
||
14 | 14 | use Composer\Composer; |
15 | 15 | use Composer\EventDispatcher\EventSubscriberInterface; |
16 | 16 | use Composer\Installer\InstallerEvent; |
17 | -use Composer\Installer\InstallerEvents; |
|
18 | 17 | use Composer\IO\IOInterface; |
19 | 18 | use Composer\Json\JsonFile; |
20 | 19 | use Composer\Package\PackageInterface; |
21 | 20 | use Composer\Plugin\CommandEvent; |
22 | -use Composer\Plugin\PluginEvents; |
|
23 | 21 | use Composer\Plugin\PluginInterface; |
24 | 22 | use Composer\Script\Event; |
25 | 23 | use Composer\Script\ScriptEvents; |
@@ -33,6 +33,9 @@ |
||
33 | 33 | return static::$parser; |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $constraint |
|
38 | + */ |
|
36 | 39 | static public function parse($constraint) |
37 | 40 | { |
38 | 41 | return static::getParser()->parseConstraints($constraint); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | } elseif ($bcon instanceof EmptyConstraint) { |
56 | 56 | return $a; |
57 | 57 | } elseif ($acon->matches($bcon) || $bcon->matches($acon)) { |
58 | - return strlen($a)>strlen($b) ? $b : $a; |
|
58 | + return strlen($a) > strlen($b) ? $b : $a; |
|
59 | 59 | } else { |
60 | 60 | return $a . ' ' . $b; |
61 | 61 | } |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | static public function findMax(array $versions) |
65 | 65 | { |
66 | 66 | $versions = array_values(array_unique($versions)); |
67 | - if (count($versions)<2) { |
|
67 | + if (count($versions) < 2) { |
|
68 | 68 | return reset($versions); |
69 | 69 | } |
70 | 70 | $max = $versions[0]; |
71 | - for ($i=1; $i<count($versions); $i++) { |
|
71 | + for ($i = 1; $i < count($versions); $i++) { |
|
72 | 72 | $cur = $versions[$i]; |
73 | 73 | if (Comparator::compare($cur, '>', $max)) { |
74 | 74 | $max = $cur; |
@@ -97,6 +97,9 @@ discard block |
||
97 | 97 | return $this->name; |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param PackageInterface $package |
|
102 | + */ |
|
100 | 103 | public function packageFullName($package) |
101 | 104 | { |
102 | 105 | return $package->getName() . ':' . $package->getVersion(); |
@@ -274,6 +277,9 @@ discard block |
||
274 | 277 | $this->writeJson($this->file, $this->config); |
275 | 278 | } |
276 | 279 | |
280 | + /** |
|
281 | + * @param string $path |
|
282 | + */ |
|
277 | 283 | abstract public function writeRc($path, $data); |
278 | 284 | |
279 | 285 | /** |
@@ -291,7 +297,7 @@ discard block |
||
291 | 297 | |
292 | 298 | /** |
293 | 299 | * Prepares arguments and runs the command with [[passthru()]]. |
294 | - * @param array $arguments |
|
300 | + * @param string[] $arguments |
|
295 | 301 | * @return integer the exit code |
296 | 302 | */ |
297 | 303 | public function passthru(array $arguments = []) |