Skip to content

Commit

Permalink
phpstan fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Feb 22, 2024
1 parent 2da61ed commit bdb8ced
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ public function handle(
Criterion $criterion,
array $languageSettings
) {
/** @var bool $isContainer */
$isContainer = reset($criterion->value);
/** @var array{bool} $criterionValue */
$criterionValue = $criterion->value;
$isContainer = reset($criterionValue);

$subSelect = $this->connection->createQueryBuilder();
$subSelect
Expand Down

0 comments on commit bdb8ced

Please sign in to comment.