Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
307 B
PHP
Raw Permalink Normal View History

2018-05-09 08:05:17 -05:00
<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
2018-05-09 08:05:17 -05:00
class EncryptCookies extends Middleware
2018-05-09 08:05:17 -05:00
{
/**
* The names of the cookies that should not be encrypted.
*
2023-04-15 09:02:41 -05:00
* @var array<int, string>
2018-05-09 08:05:17 -05:00
*/
protected $except = [
//
];
}