aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure/Http/Middleware/EncryptCookies.php
blob: 80b8da3731ec2017418d6fe744ca0080c234a7e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Infrastructure\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 = [
        //
    ];
}