From 980ea85e61db056b7256cff2e4fc4d5ccbaeb1e3 Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Thu, 28 Mar 2024 12:21:49 +0100 Subject: [PATCH] Sort: Remove var type hint change This should be fixed in ipl/stdlib --- library/Businessprocess/Common/Sort.php | 1 - 1 file changed, 1 deletion(-) diff --git a/library/Businessprocess/Common/Sort.php b/library/Businessprocess/Common/Sort.php index 01bb569f..0dfc2484 100644 --- a/library/Businessprocess/Common/Sort.php +++ b/library/Businessprocess/Common/Sort.php @@ -41,7 +41,6 @@ public function setSort(?string $sort): self return $this; } - /** @var array $res */ $res = Str::symmetricSplit($sort, ' ', 2, 'asc'); [$sortBy, $direction] = $res;