1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-02 23:16:49 +08:00
2020-08-14 20:55:39 +08:00

22 lines
372 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');
return new PhalconConfig($options);
});
}
}