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

16 lines
290 B
PHP
Raw Normal View History

2022-01-24 07:38:51 +00:00
<?php
2022-01-24 08:20:40 +00:00
// TODO: ...
2022-01-24 07:38:51 +00:00
class Config
{
public array $config;
public function __construct(string $path)
{
2022-01-24 11:55:37 +00:00
if (!file_exists($path))
{
2022-01-27 21:08:06 +00:00
throw new Exception("Could not find configuration file: $path");
2022-01-24 07:38:51 +00:00
}
$this->config = require $path;
}
}