Skip to content

Commit

Permalink
fix error when loading DI extension (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzmg authored Feb 16, 2024
1 parent f6ea081 commit 842fc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/Terminal42NodeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Terminal42NodeExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container): void
{
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../../config'));
$loader->load('services.yml');

if (class_exists(DcaLoaderListener::class)) {
Expand Down

0 comments on commit 842fc32

Please sign in to comment.