0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-09 23:07:50 +00:00
BookStackApp_BookStack/app/Http/Middleware/EncryptCookies.php
2015-07-12 20:01:42 +01:00

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