BookStack/app/Http/Middleware/EncryptCookies.php
2015-07-12 20:01:42 +01:00

18 lines
302 B
PHP

<?php
namespace Oxbow\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 = [
//
];
}