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

Parser::parse()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 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