Completed
Push — master ( 8eb5fd...97a003 )
by Antonio Carlos
03:41
created
src/Support/Arr.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@  discard block
 block discarded – undo
65 65
      * Cross join the given arrays, returning all possible permutations.
66 66
      *
67 67
      * @param  iterable  ...$arrays
68
+     * @param iterable[] $arrays
68 69
      * @return array
69 70
      */
70 71
     public static function crossJoin(...$arrays)
@@ -406,7 +407,7 @@  discard block
 block discarded – undo
406 407
      *
407 408
      * @param  iterable  $array
408 409
      * @param  string|array  $value
409
-     * @param  string|array|null  $key
410
+     * @param  string|null  $key
410 411
      * @return array
411 412
      */
412 413
     public static function pluck($array, $value, $key = null)
Please login to merge, or discard this patch.
src/Support/Str.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
      * Determine if a given string contains a given substring.
169 169
      *
170 170
      * @param  string  $haystack
171
-     * @param  string|string[]  $needles
171
+     * @param  string  $needles
172 172
      * @return bool
173 173
      */
174 174
     public static function contains($haystack, $needles)
Please login to merge, or discard this patch.