mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
23 lines
381 B
PHP
Executable File
23 lines
381 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 = [
|
|
//
|
|
];
|
|
}
|