Skip to content

Commit

Permalink
fix: Escaped variable interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn committed Oct 4, 2023
1 parent 790e979 commit 424d8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ResultExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ protected function extractFacets(stdClass $data, array $facetBuilders, array $la
'Not setting id of field using FacetFieldVisitor::visitBuilder will not be supported in 4.0'
. ', as it makes it impossible to exactly identify which facets belongs to which builder.'
. "\nMake sure to adapt your visitor for the following field: {$field}"
. "\nExample: 'facet.field' => \"{!ex=dt key=\{$id}}{$field}\",",
. "\nExample: 'facet.field' => \"{!ex=dt key={\$id}}{$field}\",",
E_USER_DEPRECATED);
}

Expand Down

0 comments on commit 424d8bc

Please sign in to comment.