Files
laravel-docker-k8s/app/Http/Middleware/EncryptCookies.php
Piethein Strengholt d21072ad62 initial commit
2018-05-10 15:28:59 +02:00

18 lines
300 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 = [
//
];
}