1 | <?php |
||
2 | |||
3 | namespace AlexBowers\MultipleDashboard\Http\Controllers; |
||
4 | |||
5 | use Illuminate\Http\Request; |
||
0 ignored issues
–
show
|
|||
6 | use AlexBowers\MultipleDashboard\File; |
||
0 ignored issues
–
show
The type
AlexBowers\MultipleDashboard\File was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
7 | use Illuminate\Routing\Controller; |
||
0 ignored issues
–
show
The type
Illuminate\Routing\Controller was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
8 | use AlexBowers\MultipleDashboard\Http\Requests\DashboardCardRequest; |
||
9 | |||
10 | class MultipleDashboardController extends Controller |
||
11 | { |
||
12 | /** |
||
13 | * List the cards for the dashboard. |
||
14 | * |
||
15 | * @param \Laravel\Nova\Http\Requests\DashboardCardRequest $request |
||
0 ignored issues
–
show
The type
Laravel\Nova\Http\Requests\DashboardCardRequest was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
16 | * @return \Illuminate\Http\Response |
||
0 ignored issues
–
show
The type
Illuminate\Http\Response was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
17 | */ |
||
18 | public function index(DashboardCardRequest $request, $dashboard) |
||
19 | { |
||
20 | return $request->availableCards($dashboard); |
||
21 | } |
||
22 | } |
||
23 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths