Completed
Pull Request — master (#47)
by Şəhriyar
16:11
created

VerifyCsrfToken::handle()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2.0625

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 3
cts 4
cp 0.75
rs 9.6666
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 2
crap 2.0625
1
<?php namespace App\Http\Middleware;
2
3
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
4
5
class VerifyCsrfToken extends BaseVerifier
6
{
7
    /**
8
     * The URIs that should be excluded from CSRF verification.
9
     *
10
     * @var array
11
     */
12
    protected $except = [
13
        //
14
    ];
15
}
16