Files
wetrack/src/Common/Infrastructure/Laravel/Middleware/EncryptCookies.php
T
2023-01-16 16:33:39 +08:00

18 lines
332 B
PHP

<?php
namespace Src\Common\Infrastructure\Laravel\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 = [
//
];
}