Skip to content

Commit

Permalink
fix: load config must require file every time
Browse files Browse the repository at this point in the history
  • Loading branch information
hschoenenberger committed Nov 27, 2024
1 parent 16d31dc commit 5cfdd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceContainer/ServiceContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static function createInstance($configPath)
*/
public function loadConfig()
{
$this->config = require_once $this->configPath;
$this->config = require $this->configPath;
}

/**
Expand Down

0 comments on commit 5cfdd94

Please sign in to comment.