We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a359f2c commit 78e4fe9Copy full SHA for 78e4fe9
src/OrderedListInterface.php
@@ -275,10 +275,9 @@ public function shuffle(): self;
275
/**
276
* Combines multiple lists into one.
277
*
278
- * @template TValueFromOther of TValue
279
- * @param OrderedListInterface<TValueFromOther> $other
280
- * @param OrderedListInterface<TValueFromOther> ...$others
281
- * @return OrderedListInterface<TValue|TValueFromOther>
+ * @param OrderedListInterface<TValue> $other
+ * @param OrderedListInterface<TValue> ...$others
+ * @return OrderedListInterface<TValue>
282
*/
283
public function combine(OrderedListInterface $other, OrderedListInterface ...$others): self;
284
}
0 commit comments