mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
24 lines
408 B
PHP
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;
|
|
});
|
|
}
|
|
|
|
} |