13 lines
254 B
PHP
Raw Normal View History

2019-11-18 02:22:25 +07:00
<?php
2019-11-18 20:33:45 +07:00
namespace Application\Services;
2019-11-18 02:22:25 +07:00
class Config {
private $configs;
public function __construct() {
2019-11-18 20:33:45 +07:00
$this->configs = require 'config.php';
2019-11-18 02:22:25 +07:00
}
public function __call($name, $args) {
return $this->configs[$name];
}
}