コード例 #1
0
ファイル: functions.php プロジェクト: neoisldl/Onion
function cfg($path = null)
{
    $path = is_array($path) ? $path : func_get_args();
    return \Onion\Config::get($path);
}
コード例 #2
0
ファイル: manager.php プロジェクト: neoisldl/Onion
 protected function __construct()
 {
     if (!($this->config = \Onion\Config::get(self::$config_path))) {
         throw new StorageError('Storages config not found! Current Path: [' . implode(',', self::$config_path) . ']');
     }
 }