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
304 B
PHP
Raw Normal View History

2022-01-24 07:38:51 +00:00
<?php
class Config
{
public array $config;
public function __construct(string $path)
{
if (!file_exists($path)) {
echo("Could not find $path");
throw new Exception("Could not find $path");
}
$this->config = require $path;
}
}