Completed
Push — master ( 4a12d5...c88b16 )
by Elf
04:25
created

VerifyApiToken::handle()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 20

Importance

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