| Conditions | 2 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function render() |
||
| 27 | { |
||
| 28 | $top_keywords = Analytics::performQuery( |
||
| 29 | Period::days(request()->has('days') ? (int) request()->days : 7), |
||
| 30 | 'ga:keyword', |
||
| 31 | [ |
||
| 32 | 'dimensions' => 'ga:keyword', |
||
| 33 | 'metrics' => 'ga:sessions', |
||
| 34 | 'sort' => '-ga:sessions' |
||
| 35 | ] |
||
| 36 | )->rows; |
||
| 37 | |||
| 38 | return view('website::components.website-analytics-dashboard', compact('top_keywords')); |
||
| 39 | } |
||
| 41 |
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