Update middleware after upgrade to Laravel 5.2

This commit is contained in:
James Cole
2016-01-08 16:00:57 +01:00
parent bbd19be554
commit ba32a665f1
6 changed files with 47 additions and 152 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace FireflyIII\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 = [
//
];
}