amdp3-metaforums/Application/Services/Config.php
2019-11-19 02:18:37 +07:00

13 lines
254 B
PHP

<?php
namespace Application\Services;
class Config {
private $configs;
public function __construct() {
$this->configs = require 'config.php';
}
public function __call($name, $args) {
return $this->configs[$name];
}
}