2
0
Fork 0
mirror of https://github.com/koel/koel synced 2025-01-07 02:08:46 +00:00
koel/app/Http/Middleware/EncryptCookies.php
2015-12-13 12:42:28 +08:00

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