| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | class TestThemeManager extends AbstractThemeManager { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritDoc}. |
||
| 30 | */ |
||
| 31 | public function __construct(LoggerInterface $logger, Environment $twigEnvironment) { |
||
| 32 | parent::__construct($logger, $twigEnvironment); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritDoc} |
||
| 37 | */ |
||
| 38 | public function getProvider(string $name): ?ThemeProviderInterface { |
||
| 39 | return parent::getProvider($name); |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritDoc} |
||
| 44 | */ |
||
| 45 | protected function initIndex(): array { |
||
| 49 | ]; |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * {@inheritDoc} |
||
| 54 | */ |
||
| 55 | public function setProvider(string $name, ?ThemeProviderInterface $provider): ManagerInterface { |
||
| 57 | } |
||
| 58 | } |
||
| 59 |