phpvms/app/Http/Middleware/EncryptCookies.php
2018-08-26 13:50:08 -05:00

16 lines
284 B
PHP
Executable File

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