From 9e136f530dc87b971b5898d40ca43965cd9093c4 Mon Sep 17 00:00:00 2001 From: Tomasz Kryszan Date: Wed, 7 Aug 2024 09:02:56 +0200 Subject: [PATCH] Marked BaseSortClauseProcessor::processSortClauses as final --- .../Input/Parser/Query/SortClause/BaseSortClauseProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contracts/Input/Parser/Query/SortClause/BaseSortClauseProcessor.php b/src/contracts/Input/Parser/Query/SortClause/BaseSortClauseProcessor.php index 2e469d0e..6abecc38 100644 --- a/src/contracts/Input/Parser/Query/SortClause/BaseSortClauseProcessor.php +++ b/src/contracts/Input/Parser/Query/SortClause/BaseSortClauseProcessor.php @@ -23,7 +23,7 @@ public function __construct(ParsingDispatcher $parsingDispatcher) $this->parsingDispatcher = $parsingDispatcher; } - public function processSortClauses(array $sortClauseData): iterable + final public function processSortClauses(array $sortClauseData): iterable { if (empty($sortClauseData)) { yield from [];