anfischer /
laravel-foundation
| 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
Loading history...
|
|||
| 13 | } |
||
| 14 |