Skip to content

Commit

Permalink
IBX-5827: Replaced deprecated string interpolation (PHP 8.2+)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn committed Oct 3, 2023
1 parent 4c8a173 commit f232b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Server/Input/Parser/Criterion.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function dispatchFacetBuilder($facetBuilderName, $facetBuilderData, Parsi
try {
return $parsingDispatcher->parse([$facetBuilderName => $facetBuilderData], $mediaType);
} catch (Exceptions\Parser $e) {
throw new Exceptions\Parser("Invalid FacetBuilder id <${facetBuilderName}>", 0, $e);
throw new Exceptions\Parser("Invalid FacetBuilder id <{$facetBuilderName}>", 0, $e);
}
}

Expand Down

0 comments on commit f232b92

Please sign in to comment.