Skip to content

Commit

Permalink
[Frontend] fix migration to enable frontendbundle in bundles.php
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Oct 28, 2024
1 parent fe0f8c5 commit 81eb451
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 buildContents(array $bundles): string

private function load(string $file): array
{
$bundles = file_exists($file) ? (require_once $file) : [];
$bundles = file_exists($file) ? (require $file) : [];
if (!\is_array($bundles)) {
$bundles = [];
}
Expand Down

0 comments on commit 81eb451

Please sign in to comment.