diff --git a/Object.php b/Object.php index 9989a60..0789aa4 100644 --- a/Object.php +++ b/Object.php @@ -4,7 +4,7 @@ private array $config; public function __construct(string $config_path = "/config.php") { - require_once(__DIR__."/../..".$config_path); + require(__DIR__."/../..".$config_path); $this->config = $global_config; unset($global_config); }