Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Configuration/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ public function boot(): Loader
// Load the env configuration first
$env_config = $this->createConfiguration(EnvConfiguration::class, $container);

// Load the .env or .env.json file
$this->loadEnvfile();

$env_config->run();

// Load the .env or .env.json file
$this->loadConfigFiles();

// Configuration of services
$loaded_configurations = $this->createConfigurations(
array_merge([CompassConfiguration::class], $this->configurations()),
Expand Down Expand Up @@ -279,7 +279,7 @@ private function loadEvents(): void
* @return void
* @throws
*/
private function loadEnvfile(): void
private function loadConfigFiles(): void
{
/**
* We load all Bow configuration
Expand Down
Loading