Completed
Push — master ( 0b917b...fc5a3e )
by Andrii
03:48
created
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.