This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/core/Config.php
2022-01-27 22:08:06 +01:00

16 lines
290 B
PHP

<?php
// TODO: ...
class Config
{
public array $config;
public function __construct(string $path)
{
if (!file_exists($path))
{
throw new Exception("Could not find configuration file: $path");
}
$this->config = require $path;
}
}