Total Complexity | 4 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class ApplicationViewInjection implements |
||
14 | LayoutParametersInjectionInterface, |
||
15 | MetaTagsInjectionInterface, |
||
16 | LinkTagsInjectionInterface |
||
17 | { |
||
18 | |||
19 | private User $user; |
||
20 | private UrlMatcherInterface $urlMatcher; |
||
21 | |||
22 | public function __construct( |
||
23 | User $user, |
||
24 | UrlMatcherInterface $urlMatcher |
||
25 | ) { |
||
26 | $this->user = $user; |
||
27 | $this->urlMatcher = $urlMatcher; |
||
28 | } |
||
29 | |||
30 | public function getLayoutParameters(): array |
||
36 | ]; |
||
37 | } |
||
38 | |||
39 | public function getMetaTags(): array |
||
46 | ], |
||
47 | ]; |
||
48 | } |
||
49 | |||
50 | public function getLinkTags(): array |
||
57 | ], |
||
58 | ]; |
||
61 |
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