vsmov-core/src/Middleware/EncryptCookies.php
Clemencia John 1970f4708d update
2026-04-19 23:29:45 -07:00

18 lines
320 B
PHP

<?php
namespace VsMov\Core\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 = [
'ckCsrfToken'
];
}