Files
2026-03-20 21:47:02 +05:00

18 lines
324 B
PHP
Executable File

<?php
namespace App\Ship\Middleware;
use App\Ship\Abstracts\Middleware\EncryptCookies as AbstractMiddleware;
class EncryptCookies extends AbstractMiddleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array<int, string>
*/
protected $except = [
//
];
}