We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da61ed commit a9cf699Copy full SHA for a9cf699
src/lib/Search/Legacy/Content/Common/Gateway/CriterionHandler/IsContainer.php
@@ -35,8 +35,10 @@ public function handle(
35
Criterion $criterion,
36
array $languageSettings
37
) {
38
- /** @var bool $isContainer */
39
- $isContainer = reset($criterion->value);
+
+ /** @var array{bool} $criterionValue */
40
+ $criterionValue = $criterion->value;
41
+ $isContainer = reset($criterionValue);
42
43
$subSelect = $this->connection->createQueryBuilder();
44
$subSelect
0 commit comments