Files
crater/app/Http/Middleware/EncryptCookies.php
2019-11-15 18:05:22 +05:30

24 lines
428 B
PHP

<?php
namespace Crater\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* Indicates if cookies should be serialized.
*
* @var bool
*/
protected static $serialize = false;
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}