| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class LayoutViewInjection implements LayoutParametersInjectionInterface |
||
| 11 | { |
||
| 12 | private CurrentUser $currentUser; |
||
| 13 | |||
| 14 | 10 | public function __construct(CurrentUser $currentUser) |
|
| 15 | { |
||
| 16 | 10 | $this->currentUser = $currentUser; |
|
| 17 | 10 | } |
|
| 18 | |||
| 19 | 10 | public function getLayoutParameters(): array |
|
| 24 | ]; |
||
| 25 | } |
||
| 27 |