Skip to content

Commit

Permalink
Fix config path
Browse files Browse the repository at this point in the history
  • Loading branch information
bytehead committed Nov 12, 2024
1 parent 87da6f9 commit 8fa53a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ContaoManager/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public function getBundles(ParserInterface $parser): array
public function getRouteCollection(LoaderResolverInterface $resolver, KernelInterface $kernel): ?RouteCollection
{
return $resolver
->resolve(__DIR__ . '/../config/routes.yaml')
->load(__DIR__ . '/../config/routes.yaml')
->resolve(__DIR__ . '/../../config/routes.yaml')
->load(__DIR__ . '/../../config/routes.yaml')
;
}
}

0 comments on commit 8fa53a1

Please sign in to comment.