| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 7 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class LayoutViewInjection implements LayoutParametersInjectionInterface |
||
| 14 | { |
||
| 15 | public function __construct( |
||
| 16 | 3 | private Aliases $aliases, |
|
| 17 | private AssetManager $assetManager, |
||
| 18 | private Locale $locale, |
||
| 19 | private CurrentRoute $currentRoute, |
||
| 20 | ) { |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getLayoutParameters(): array |
||
| 30 | 3 | ]; |
|
| 31 | 3 | } |
|
| 33 |