koel/app/Http/Middleware/EncryptCookies.php
2023-02-25 06:39:47 +01:00

16 lines
301 B
PHP

<?php
namespace App\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 = [
];
}