Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Illuminate/Collections/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ public static function join($array, $glue, $finalGlue = '')
/**
* Key an associative array by a field or using a callback.
*
* @param array $array
* @param iterable $array
* @param callable|array|string $keyBy
* @return array
*/
Expand Down Expand Up @@ -1024,7 +1024,7 @@ public static function sole($array, ?callable $callback = null)
/**
* Sort the array using the given callback or "dot" notation.
*
* @param array $array
* @param iterable $array
* @param callable|array|string|null $callback
* @return array
*/
Expand All @@ -1036,7 +1036,7 @@ public static function sort($array, $callback = null)
/**
* Sort the array in descending order using the given callback or "dot" notation.
*
* @param array $array
* @param iterable $array
* @param callable|array|string|null $callback
* @return array
*/
Expand Down