mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
17 lines
228 B
PHP
17 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
class Cookie extends Provider
|
|
{
|
|
|
|
protected $serviceName = 'cookies';
|
|
|
|
public function register()
|
|
{
|
|
$this->di->setShared($this->serviceName, function () {
|
|
|
|
});
|
|
}
|
|
|
|
} |