| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ApplicationInjection extends AbstractInjection |
||
| 11 | { |
||
| 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 getLayoutParams(): array |
||
| 30 | ]; |
||
| 31 | } |
||
| 33 |