amdp3-metaforums/Application/Services/Config.php

13 lines
254 B
PHP
Raw Permalink Normal View History

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