misc_pterodactyl-panel/app/Http/Middleware/EncryptCookies.php
2017-08-21 22:10:48 -05:00

16 lines
297 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
*/
protected $except = [
];
}