@@ -671,7 +671,7 @@ public function map(callable $callback)
671
671
* @template TMapToDictionaryKey of array-key
672
672
* @template TMapToDictionaryValue
673
673
*
674
- * @param callable(TValue, TKey): array<TMapToDictionaryKey, TMapToDictionaryValue> $callback
674
+ * @param callable(TValue, TKey): array<TMapToDictionaryKey, TMapToDictionaryValue> $callback
675
675
* @return static<TMapToDictionaryKey, array<int, TMapToDictionaryValue>>
676
676
*/
677
677
public function mapToDictionary (callable $ callback )
@@ -703,7 +703,7 @@ public function mapToDictionary(callable $callback)
703
703
* @template TMapWithKeysKey of array-key
704
704
* @template TMapWithKeysValue
705
705
*
706
- * @param callable(TValue, TKey): array<TMapWithKeysKey, TMapWithKeysValue> $callback
706
+ * @param callable(TValue, TKey): array<TMapWithKeysKey, TMapWithKeysValue> $callback
707
707
* @return static<TMapWithKeysKey, TMapWithKeysValue>
708
708
*/
709
709
public function mapWithKeys (callable $ callback )
@@ -724,7 +724,7 @@ public function mapWithKeys(callable $callback)
724
724
/**
725
725
* Merge the collection with the given items.
726
726
*
727
- * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
727
+ * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
728
728
* @return static<TKey, TValue>
729
729
*/
730
730
public function merge ($ items )
@@ -735,7 +735,7 @@ public function merge($items)
735
735
/**
736
736
* Recursively merge the collection with the given items.
737
737
*
738
- * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
738
+ * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
739
739
* @return static<TKey, array<int, TValue>>
740
740
*/
741
741
public function mergeRecursive ($ items )
@@ -748,7 +748,7 @@ public function mergeRecursive($items)
748
748
*
749
749
* @template TCombineValue
750
750
*
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
752
752
* @return static<TKey, TCombineValue>
753
753
*/
754
754
public function combine ($ values )
@@ -759,7 +759,7 @@ public function combine($values)
759
759
/**
760
760
* Union the collection with the given items.
761
761
*
762
- * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
762
+ * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
763
763
* @return static<TKey, TValue>
764
764
*/
765
765
public function union ($ items )
@@ -933,7 +933,7 @@ public function random($number = null)
933
933
/**
934
934
* Replace the collection items with the given items.
935
935
*
936
- * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
936
+ * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
937
937
* @return static<TKey, TValue>
938
938
*/
939
939
public function replace ($ items )
0 commit comments