Skip to content

Commit

Permalink
[EasyHttpClient] Fix Symfony DI config file locator (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
natepage committed Jul 5, 2021
1 parent d03a0b6 commit 6488539
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class EasyHttpClientExtension extends Extension
public function load(array $configs, ContainerBuilder $container): void
{
$config = $this->processConfiguration(new Configuration(), $configs);
$loader = new PhpFileLoader($container, new FileLocator([__DIR__ . '../Resources/config']));
$loader = new PhpFileLoader($container, new FileLocator([__DIR__ . '/../Resources/config']));

if (($config['easy_bugsnag_enabled'] ?? true) && \class_exists(Client::class)) {
$loader->load('easy_bugsnag.php');
Expand Down

0 comments on commit 6488539

Please sign in to comment.