misc_pterodactyl-panel/app/Http/Middleware/EncryptCookies.php
2022-02-26 11:15:20 -05:00

15 lines
305 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.
*
* @var array<int, string>
*/
protected $except = [];
}