CA_LARAVEL/test/app/Http/Middleware/EncryptCookies.php
Florian Bouillon 543d104c7c
Initial Commit !
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-11 13:55:39 +01:00

18 lines
294 B
PHP

<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}