File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/Illuminate/Collections Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ public function each(callable $callback);
255
255
/**
256
256
* Execute a callback over each nested chunk of items.
257
257
*
258
- * @param callable(...mixed): mixed $callback
258
+ * @param callable $callback
259
259
* @return static<TKey, TValue>
260
260
*/
261
261
public function eachSpread (callable $ callback );
@@ -604,10 +604,8 @@ public function map(callable $callback);
604
604
/**
605
605
* Run a map over each nested chunk of items.
606
606
*
607
- * @template TMapSpreadValue
608
- *
609
- * @param callable(...mixed): TMapSpreadValue $callback
610
- * @return static<TKey, TMapSpreadValue>
607
+ * @param callable $callback
608
+ * @return static<TKey, TValue>
611
609
*/
612
610
public function mapSpread (callable $ callback );
613
611
You can’t perform that action at this time.
0 commit comments