1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-25 04:13:42 +01:00
BookStack/app/Http/Middleware/EncryptCookies.php

18 lines
300 B
PHP
Raw Normal View History

2015-07-12 21:01:42 +02:00
<?php
namespace BookStack\Http\Middleware;
2015-07-12 21:01:42 +02:00
2017-11-19 16:56:06 +01:00
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
2015-07-12 21:01:42 +02:00
2017-11-19 16:56:06 +01:00
class EncryptCookies extends Middleware
2015-07-12 21:01:42 +02:00
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}