filesharing/app/Http/Middleware/EncryptCookies.php
2017-07-19 16:19:11 +02:00

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 = [
//
];
}