1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 19:04:43 +00:00
Files
metr/backend/app/Http/Middleware/EncryptCookies.php
2022-05-25 22:37:52 +07:00

18 lines
307 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<int, string>
*/
protected $except = [
//
];
}