From 7e200471f63886d3c4e765a8219506baf8150c10 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Thu, 7 Nov 2024 20:14:37 +0100 Subject: [PATCH] TASK: Adjust to new phpstan version Method Neos\Flow\Mvc\Routing\Dto\UriConstraints::withAddedQueryValues() should return $this(Neos\Flow\Mvc\Routing\Dto\UriConstraints) but returns static(Neos\Flow\Mvc\Routing\Dto\UriConstraints) --- Neos.Flow/Classes/Mvc/Routing/Dto/UriConstraints.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Neos.Flow/Classes/Mvc/Routing/Dto/UriConstraints.php b/Neos.Flow/Classes/Mvc/Routing/Dto/UriConstraints.php index 8de69c9207..cfead76153 100644 --- a/Neos.Flow/Classes/Mvc/Routing/Dto/UriConstraints.php +++ b/Neos.Flow/Classes/Mvc/Routing/Dto/UriConstraints.php @@ -213,7 +213,7 @@ public function withQueryString(string $queryString): self * Create a new instance with a query string corresponding to the given $values merged with any existing query string constraint * * @param array $values - * @return $this + * @return UriConstraints */ public function withAddedQueryValues(array $values): self {