adrema/app/Http/Middleware/EncryptCookies.php

17 lines
296 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?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.
*
2023-02-13 15:56:20 +01:00
* @var array<int, string>
2020-04-10 20:32:12 +02:00
*/
protected $except = [
];
}