cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Middleware;
|
|
|
|
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
|
|
|
|
class EncryptCookies extends BaseEncrypter
|
|
{
|
|
/**
|
|
* The names of the cookies that should not be encrypted.
|
|
*/
|
|
protected $except = [];
|
|
}
|