1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-01-30 16:51:10 +08:00

24 lines
408 B
PHP

<?php
namespace App\Providers;
use Phalcon\Config as PhalconConfig;
class Config extends Provider
{
protected $serviceName = 'config';
public function register()
{
$this->di->setShared($this->serviceName, function () {
$options = require config_path() . '/config.php';
$config = new PhalconConfig($options);
return $config;
});
}
}