Total Complexity | 3 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class RouteServiceProvider extends BasicRouteServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * This namespace is applied to your controller routes. |
||
13 | * |
||
14 | * In addition, it is set as the URL generator's root namespace. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $namespace = 'Diglabby\Doika\Http\Controllers'; |
||
19 | |||
20 | /** @var string */ |
||
21 | protected $laravelNamespace = 'App\Http\Controllers'; |
||
22 | |||
23 | /** |
||
24 | * Define the routes for the application. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function map() |
||
29 | { |
||
30 | $this->mapWidgetRoutes(); |
||
31 | $this->mapDashboardRoutes(); |
||
32 | } |
||
33 | |||
34 | protected function mapWidgetRoutes() |
||
40 | } |
||
41 | |||
42 | protected function mapDashboardRoutes() |
||
53 | } |
||
54 | } |
||
55 |
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