mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 03:31:09 -04:00
23 lines
430 B
PHP
23 lines
430 B
PHP
<?php
|
|
namespace Laraspace\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 = [
|
|
//
|
|
];
|
|
} |