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

MasterTarifMiddleware   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
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