From 177ab674460f8a0a51bb36a8203b17919013e4cc 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 68a13d79..0fe8ce0c 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 [];