nooktheme/app/Http/Middleware/EncryptCookies.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

14 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 = [];
}