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 bdb8cedCopy full SHA for bdb8ced
src/lib/Search/Legacy/Content/Common/Gateway/CriterionHandler/IsContainer.php
@@ -35,8 +35,9 @@ public function handle(
35
Criterion $criterion,
36
array $languageSettings
37
) {
38
- /** @var bool $isContainer */
39
- $isContainer = reset($criterion->value);
+ /** @var array{bool} $criterionValue */
+ $criterionValue = $criterion->value;
40
+ $isContainer = reset($criterionValue);
41
42
$subSelect = $this->connection->createQueryBuilder();
43
$subSelect
0 commit comments