Completed
Push — develop ( 9ef43c...2134af )
by Tom
03:56
created
src/N98/Util/Console/Helper/ParameterHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,9 +222,9 @@
 block discarded – undo
222 222
      * @param OutputInterface                                $output
223 223
      * @param string                                         $name
224 224
      * @param string                                         $value
225
-     * @param Constraints\Collection|Constraint|Constraint[] $constraints The constraint(s) to validate against.
225
+     * @param Constraints\Collection $constraints The constraint(s) to validate against.
226 226
      *
227
-     * @return mixed
227
+     * @return string
228 228
      */
229 229
     protected function _validateArgument(OutputInterface $output, $name, $value, $constraints)
230 230
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/Structure/DDLTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-     * @param array|DDLTableColumn[] $columnDefinitions
80
+     * @param DDLTableColumn[] $columnDefinitions
81 81
      */
82 82
     public function setColumns($columnDefinitions)
83 83
     {
Please login to merge, or discard this patch.
tests/N98/Magento/TestApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     /**
187 187
      *
188 188
      *
189
-     * @param  mixed $value
189
+     * @param  string|null $value
190 190
      * @return PHPUnit_Framework_MockObject_Stub_Return
191 191
      * @since  Method available since Release 3.0.0
192 192
      */
Please login to merge, or discard this patch.
shared/src/N98/Util/ArrayFunctions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * @param array $matrix
44
-     * @param string|int $key key to filter
45
-     * @param string|int|float|null|array|object $value to compare against (strict comparison)
44
+     * @param string $key key to filter
45
+     * @param string $value to compare against (strict comparison)
46 46
      * @return array
47 47
      */
48 48
     public static function matrixFilterByValue(array $matrix, $key, $value)
Please login to merge, or discard this patch.