Skip to content

Commit

Permalink
NGSTACK-836: remove unnecessary type cast
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed May 29, 2024
1 parent 30b01aa commit 05bcae0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private function recursiveMapFields(
bool $doIndex = true,
): array {
$fieldsGrouped = [[]];
$isIndexed = !isset($configuration['indexed']) || (bool) $configuration['indexed'];
$isIndexed = !isset($configuration['indexed']) || $configuration['indexed'];
$childrenConfiguration = $configuration['children'] ?? [];

if ($isIndexed && $doIndex) {
Expand Down

0 comments on commit 05bcae0

Please sign in to comment.