mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
19 lines
310 B
PHP
19 lines
310 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 () {
|
|
return new AppSecurity();
|
|
});
|
|
}
|
|
|
|
} |