Pony.fm/app/Http/Middleware/EncryptCookies.php
2015-10-23 18:22:14 -07:00

17 lines
313 B
PHP

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