Skip to content

Commit

Permalink
Remove redundant cast
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Oct 5, 2023
1 parent 25fc7bb commit a0821f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private function build(string $topLevelKey): void

$this->raiseAnyDeprecationNotices($processor->getWarnings());

$this->finalConfig->import((array) self::convertStdClassesToArrays($processed));
$this->finalConfig->import(self::convertStdClassesToArrays($processed));
} catch (NetteValidationException $ex) {
throw new ValidationException($ex);
}
Expand Down

0 comments on commit a0821f6

Please sign in to comment.