From 901f6ab8086b9409e7c1c554a5dfcd16d768d273 Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Mon, 31 May 2021 16:40:23 +0200 Subject: [PATCH] BUGFIX: Fix signature mismatch in AbstractQueryBuilder --- Classes/Command/NodeIndexCommandController.php | 3 ++- Classes/Indexer/NodeIndexer.php | 1 + Classes/Search/AbstractQueryBuilder.php | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Classes/Command/NodeIndexCommandController.php b/Classes/Command/NodeIndexCommandController.php index e70861e..60e0d91 100644 --- a/Classes/Command/NodeIndexCommandController.php +++ b/Classes/Command/NodeIndexCommandController.php @@ -1,4 +1,6 @@ getSimpleSearchQueryBuilder()->like('__typeAndSuperTypes', "#" . $nodeType . "#"); @@ -120,7 +120,7 @@ public function nodeType($nodeType): QueryBuilderInterface * @param mixed $propertyValue * @return QueryBuilderInterface */ - public function exactMatch($propertyName, $propertyValue): QueryBuilderInterface + public function exactMatch(string $propertyName, $propertyValue): QueryBuilderInterface { if ($propertyValue instanceof NodeInterface) { $propertyValue = (string) $propertyValue->getNodeAggregateIdentifier();