forked from XiaoLFeng/XF_Index
23 lines
472 B
PHP
23 lines
472 B
PHP
<?php
|
|
/*
|
|
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
|
|
* 开发开源遵循 MIT 许可,若需商用请联系开发者
|
|
* https://www.x-lf.com/
|
|
*/
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
|
|
|
|
class EncryptCookies extends Middleware
|
|
{
|
|
/**
|
|
* The names of the cookies that should not be encrypted.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $except = [
|
|
//
|
|
];
|
|
}
|