1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-03-09 13:59:58 -04:00
hypothetical/app/Http/Middleware/EncryptCookies.php

17 lines
300 B
PHP

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