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

22 lines
347 B
PHP

<?php
namespace App\Providers;
use App\Library\Security as AppSecurity;
class Security extends Provider
{
protected $serviceName = 'security';
public function register()
{
$this->di->setShared($this->serviceName, function () {
$security = new AppSecurity();
return $security;
});
}
}