mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
24 lines
397 B
PHP
Executable File
24 lines
397 B
PHP
Executable File
<?php
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
|
|
|
|
/**
|
|
* Class EncryptCookies
|
|
*
|
|
* @package FireflyIII\Http\Middleware
|
|
*/
|
|
class EncryptCookies extends BaseEncrypter
|
|
{
|
|
/**
|
|
* The names of the cookies that should not be encrypted.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $except
|
|
= [
|
|
//
|
|
];
|
|
}
|