Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ValidateSignature
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace App\Http\Middleware;
4
5use Illuminate\Routing\Middleware\ValidateSignature as Middleware;
6
7class ValidateSignature extends Middleware
8{
9    /**
10     * The names of the query string parameters that should be ignored.
11     *
12     * @var array<int, string>
13     */
14    protected $except = [
15        // 'fbclid',
16        // 'utm_campaign',
17        // 'utm_content',
18        // 'utm_medium',
19        // 'utm_source',
20        // 'utm_term',
21    ];
22}