Controller
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
dl 0
loc 4
c 0
b 0
f 0
1
<?php
2
3
namespace Anfischer\Foundation\Http;
4
5
use Anfischer\Foundation\Feature\Concerns\ServesFeatures;
6
use Illuminate\Routing\Controller as BaseController;
7
use Illuminate\Foundation\Validation\ValidatesRequests;
8
9
class Controller extends BaseController
10
{
11
    use ValidatesRequests;
12
    use ServesFeatures;
0 ignored issues
show
Bug introduced by
The trait Anfischer\Foundation\Fea...Concerns\ServesFeatures requires the property $name which is not provided by Anfischer\Foundation\Http\Controller.
Loading history...
13
}
14