Skip to content

Commit

Permalink
[TASK] Fix typo for FileLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbelasichon committed Apr 16, 2024
1 parent c53e32a commit 0b26fd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fractor/src/DependencyInjection/ContainerBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public function createDependencyInjectionContainer(?string $fractorConfigFile):
$config->set(Container::class, $config);
$config->set(FractorConfig::class, $config);

$yamlFileLoader = new PhpFileLoader($config, new FileLocator(__DIR__ . '/../../config/'));
$yamlFileLoader->load('application.php');
$fileLoader = new PhpFileLoader($config, new FileLocator(__DIR__ . '/../../config/'));
$fileLoader->load('application.php');

$this->importExtensionConfigurations($config);

Expand Down

0 comments on commit 0b26fd2

Please sign in to comment.