Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class LayoutViewInjection implements LayoutParametersInjectionInterface |
||
12 | { |
||
13 | private User $user; |
||
14 | private UrlMatcherInterface $urlMatcher; |
||
15 | |||
16 | public function __construct( |
||
17 | User $user, |
||
18 | UrlMatcherInterface $urlMatcher |
||
19 | ) { |
||
20 | $this->user = $user; |
||
21 | $this->urlMatcher = $urlMatcher; |
||
22 | } |
||
23 | |||
24 | public function getLayoutParameters(): array |
||
30 | ]; |
||
31 | } |
||
33 |