Skip to content

Commit fc87103

Browse files
Merge branch '8.x'
2 parents 880ffe3 + 18fa841 commit fc87103

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Collection.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ public function map(callable $callback)
671671
* @template TMapToDictionaryKey of array-key
672672
* @template TMapToDictionaryValue
673673
*
674-
* @param callable(TValue, TKey): array<TMapToDictionaryKey, TMapToDictionaryValue> $callback
674+
* @param callable(TValue, TKey): array<TMapToDictionaryKey, TMapToDictionaryValue> $callback
675675
* @return static<TMapToDictionaryKey, array<int, TMapToDictionaryValue>>
676676
*/
677677
public function mapToDictionary(callable $callback)
@@ -703,7 +703,7 @@ public function mapToDictionary(callable $callback)
703703
* @template TMapWithKeysKey of array-key
704704
* @template TMapWithKeysValue
705705
*
706-
* @param callable(TValue, TKey): array<TMapWithKeysKey, TMapWithKeysValue> $callback
706+
* @param callable(TValue, TKey): array<TMapWithKeysKey, TMapWithKeysValue> $callback
707707
* @return static<TMapWithKeysKey, TMapWithKeysValue>
708708
*/
709709
public function mapWithKeys(callable $callback)
@@ -724,7 +724,7 @@ public function mapWithKeys(callable $callback)
724724
/**
725725
* Merge the collection with the given items.
726726
*
727-
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
727+
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
728728
* @return static<TKey, TValue>
729729
*/
730730
public function merge($items)
@@ -735,7 +735,7 @@ public function merge($items)
735735
/**
736736
* Recursively merge the collection with the given items.
737737
*
738-
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
738+
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
739739
* @return static<TKey, array<int, TValue>>
740740
*/
741741
public function mergeRecursive($items)
@@ -748,7 +748,7 @@ public function mergeRecursive($items)
748748
*
749749
* @template TCombineValue
750750
*
751-
* @param \Illuminate\Contracts\Support\Arrayable<array-key, TCombineValue>|iterable<array-key, TCombineValue> $values
751+
* @param \Illuminate\Contracts\Support\Arrayable<array-key, TCombineValue>|iterable<array-key, TCombineValue> $values
752752
* @return static<TKey, TCombineValue>
753753
*/
754754
public function combine($values)
@@ -759,7 +759,7 @@ public function combine($values)
759759
/**
760760
* Union the collection with the given items.
761761
*
762-
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
762+
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
763763
* @return static<TKey, TValue>
764764
*/
765765
public function union($items)
@@ -933,7 +933,7 @@ public function random($number = null)
933933
/**
934934
* Replace the collection items with the given items.
935935
*
936-
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
936+
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
937937
* @return static<TKey, TValue>
938938
*/
939939
public function replace($items)

0 commit comments

Comments
 (0)