misc_pterodactyl-panel/app/Http/Middleware/EncryptCookies.php

16 lines
305 B
PHP
Raw Normal View History

<?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 16:15:20 +00:00
* @var array<int, string>
*/
2017-10-29 17:37:25 +00:00
protected $except = [];
}