Files
salt-minv-graph/app/Http/Middleware/EncryptCookies.php
Jaroslav Drzik e2f7d8b5c6 Git inicializacia
2019-11-15 11:03:55 +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 = [
//
];
}