firefly-iii/app/Http/Middleware/EncryptCookies.php

18 lines
301 B
PHP
Raw Normal View History

<?php
namespace FireflyIII\Http\Middleware;
2017-09-09 15:02:20 -05:00
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
2017-09-09 15:02:20 -05:00
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
2017-09-09 15:02:20 -05:00
protected $except = [
//
];
}