2015-12-06 13:58:49 -05:00
|
|
|
<?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.
|
|
|
|
*
|
2022-02-26 11:15:20 -05:00
|
|
|
* @var array<int, string>
|
2015-12-06 13:58:49 -05:00
|
|
|
*/
|
2017-10-29 12:37:25 -05:00
|
|
|
protected $except = [];
|
2015-12-06 13:58:49 -05:00
|
|
|
}
|