Completed
Push — master ( 6e65a9...c58e43 )
by Andrii
02:43
created
src/Plugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Constraint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PackageManager.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@  discard block
 block discarded – undo
82 82
         );
83 83
     }
84 84
 
85
+    /**
86
+     * @param PackageInterface $package
87
+     */
85 88
     public function packageFullName($package)
86 89
     {
87 90
         return $package->getName() . ':' . $package->getVersion();
@@ -263,7 +266,7 @@  discard block
 block discarded – undo
263 266
 
264 267
     /**
265 268
      * Prepares arguments and runs the command with [[passthru()]].
266
-     * @param array $arguments
269
+     * @param string[] $arguments
267 270
      * @return integer the exit code
268 271
      */
269 272
     public function passthru(array $arguments = [])
Please login to merge, or discard this patch.