Issues (9)

src/Http/Controller.php (1 issue)

Labels
Severity
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
The trait Anfischer\Foundation\Fea...Concerns\ServesFeatures requires the property $name which is not provided by Anfischer\Foundation\Http\Controller.
Loading history...
13
}
14