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

VerifyApiToken::isValidToken()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 2
nop 1
dl 0
loc 10
ccs 0
cts 5
cp 0
crap 6
rs 9.4285
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