1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-13 01:30:11 +01:00
openstamanager/app/Http/Middleware/EncryptCookies.php
2023-05-07 17:06:01 +02:00

18 lines
351 B
PHP

<?php
/** @noinspection PropertyInitializationFlawsInspection */
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 = [];
}