Files
solidtime/app/Http/Middleware/EncryptCookies.php
T
2024-01-16 23:16:53 +01:00

20 lines
333 B
PHP

<?php
declare(strict_types=1);
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 = [
//
];
}