From 78e4fe98347fb319285b7febe6e801f400fa2292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Tue, 20 Aug 2024 16:36:26 +0200 Subject: [PATCH] qa: narrow down combine types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- src/OrderedListInterface.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/OrderedListInterface.php b/src/OrderedListInterface.php index d361f02..82996e2 100644 --- a/src/OrderedListInterface.php +++ b/src/OrderedListInterface.php @@ -275,10 +275,9 @@ public function shuffle(): self; /** * Combines multiple lists into one. * - * @template TValueFromOther of TValue - * @param OrderedListInterface $other - * @param OrderedListInterface ...$others - * @return OrderedListInterface + * @param OrderedListInterface $other + * @param OrderedListInterface ...$others + * @return OrderedListInterface */ public function combine(OrderedListInterface $other, OrderedListInterface ...$others): self; }