amdp3-metaforums/backend/Mitsumine/Services/Config.php

13 lines
260 B
PHP
Raw Normal View History

2019-11-17 19:22:25 +00:00
<?php
namespace Mitsumine\Services;
class Config {
private $configs;
public function __construct() {
$this->configs = require 'backend/config.php';
}
public function __call($name, $args) {
return $this->configs[$name];
}
}