| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class GiiParametersProvider |
||
| 8 | { |
||
| 9 | 4 | public function __construct( |
|
| 16 | } |
||
| 17 | |||
| 18 | 2 | public function getTemplates(string $controllerId): array |
|
| 19 | { |
||
| 20 | 2 | $templates = $this->templates[$controllerId] ?? []; |
|
| 21 | 2 | return array_merge(['default' => true], $templates); |
|
| 22 | } |
||
| 23 | |||
| 24 | public function getRequiredTemplates(): array |
||
| 27 | } |
||
| 28 | } |
||
| 29 |