3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-07 00:45:49 +00:00
Files
snipe-it/app/Http/Middleware/EncryptCookies.php

22 lines
343 B
PHP

<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
protected static $serialize = true;
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}