Files
ProxyPanel/app/Http/Middleware/EncryptCookies.php
兔姬桑 8ae52d8a2f 格式化
2020-08-05 03:20:33 +08:00

16 lines
264 B
PHP

<?php
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
*/
protected $except = [//
];
}