Total Complexity | 9 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class WebArtisanEnabled |
||
11 | { |
||
12 | /** |
||
13 | * The WebArtisan instance |
||
14 | * |
||
15 | * @var LaravelWebArtisan |
||
16 | */ |
||
17 | protected $webartisan; |
||
18 | |||
19 | /** |
||
20 | * Create a new middleware instance. |
||
21 | * |
||
22 | * @param LaravelWebArtisan $webartisan |
||
23 | */ |
||
24 | public function __construct(LaravelWebArtisan $webartisan) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Handle an incoming request. |
||
31 | * |
||
32 | * @param $request |
||
33 | * @param Closure $next |
||
34 | * @return Response|mixed |
||
35 | */ |
||
36 | public function handle($request, Closure $next) |
||
57 | } |
||
58 | } |