| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function render() |
||
| 14 | { |
||
| 15 | $top_landing_pages = Analytics::performQuery( |
||
| 16 | Period::days($this->days), |
||
| 17 | 'ga:entrances', |
||
| 18 | [ |
||
| 19 | 'dimensions' => 'ga:landingPagePath', |
||
| 20 | 'metrics' => 'ga:entrances,ga:bounces', |
||
| 21 | 'sort' => '-ga:entrances' |
||
| 22 | ] |
||
| 23 | )->rows; |
||
| 24 | |||
| 25 | return view('website::livewire.admin.analytics.top-landing-pages', compact('top_landing_pages')); |
||
| 26 | } |
||
| 28 |
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