Completed
Branch develop-3.0 (4fe777)
by Mohamed
11:06
created

VerifyCsrfToken::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 2
crap 1
1
<?php
2
3
/*
4
 * This file is part of the Tinyissue package.
5
 *
6
 * (c) Mohamed Alsharaf <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Tinyissue\Http\Middleware;
13
14
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
15
16
/**
17
 * VerifyCsrfToken is a Middleware class verify the session token.
18
 *
19
 * @author Mohamed Alsharaf <[email protected]>
20
 */
21
class VerifyCsrfToken extends BaseVerifier
22
{
23
    /**
24
     * The URIs that should be excluded from CSRF verification.
25
     *
26
     * @var array
27
     */
28
    protected $except = [
29
        //
30
    ];
31
}
32