Completed
Push — master ( ffed5b...79dc99 )
by
unknown
04:07
created

MasterTarifMiddleware::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php namespace Bantenprov\MasterTarif\Http\Middleware;
2
3
use Closure;
4
5
/**
6
 * The MasterTarifMiddleware class.
7
 *
8
 * @package Bantenprov\MasterTarif
9
 * @author  bantenprov <[email protected]>
10
 */
11
class MasterTarifMiddleware
12
{
13
14
    /**
15
     * Handle an incoming request.
16
     *
17
     * @param  \Illuminate\Http\Request  $request
18
     * @param  \Closure  $next
19
     * @return mixed
20
     */
21
    public function handle($request, Closure $next)
22
    {
23
        return $next($request);
24
    }
25
}
26