Completed
Push — develop ( 9a08bc...c3dea4 )
by Sean
02:58
created

Parser   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 7
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
parse() 0 1 ?
1
<?php
2
3
/*
4
 * This file is part of jwt-auth
5
 *
6
 * (c) Sean Tymon <[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 Tymon\JWTAuth\Http;
13
14
use Illuminate\Http\Request;
15
16
interface Parser
17
{
18
    /**
19
     * Parse the request
20
     *
21
     * @param  \Illuminate\Http\Request $request
22
     *
23
     * @return  null|string
24
     */
25
    public function parse(Request $request);
26
}
27