Completed
Push — master ( 91c709...1f6826 )
by Antonio Carlos
06:01
created
src/Support/Arr.php 1 patch
Doc Comments   +3 added lines, -2 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)
@@ -275,7 +276,7 @@  discard block
 block discarded – undo
275 276
      * Get an item from an array using "dot" notation.
276 277
      *
277 278
      * @param  \ArrayAccess|array  $array
278
-     * @param  string|int|null  $key
279
+     * @param  string  $key
279 280
      * @param  mixed  $default
280 281
      * @return mixed
281 282
      */
@@ -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.