Skip to content

Commit

Permalink
NGSTACK-836: fix case mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed May 29, 2024
1 parent b5456ed commit 6153cd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Core/Search/Solr/FieldMapper/ParentChildFieldMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final class ParentChildFieldMapper extends ContentTranslationFieldMapper
*/
public function __construct(
private readonly array $configuration,
private readonly FulltextFieldResolver $fulltextFieldResolver,
private readonly FullTextFieldResolver $fullTextFieldResolver,
private readonly ContentTypeHandler $contentTypeHandler,
private readonly ContentHandler $contentHandler,
private readonly Handler $contentFilteringHandler,
Expand Down Expand Up @@ -89,7 +89,7 @@ private function recursiveMapFields(

if ($isIndexed && $doIndex) {
$content = $this->contentHandler->load($contentInfo->id);
$fieldsGrouped[] = $this->fulltextFieldResolver->resolveFields($content, $languageCode);
$fieldsGrouped[] = $this->fullTextFieldResolver->resolveFields($content, $languageCode);
}

$childrenContentInfoList = $this->loadChildrenContentInfoList(
Expand Down

0 comments on commit 6153cd0

Please sign in to comment.