mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
18 lines
302 B
PHP
18 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
namespace Gwent\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 = [
|
||
|
//
|
||
|
];
|
||
|
}
|