| 1 | <?php |
||
| 19 | final class TestConfigurationProvider implements ConfigurationProviderInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var TestThemeConfigurationManagerInterface |
||
| 23 | */ |
||
| 24 | private $testThemeConfigurationManager; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param TestThemeConfigurationManagerInterface $testThemeConfigurationManager |
||
| 28 | */ |
||
| 29 | public function __construct(TestThemeConfigurationManagerInterface $testThemeConfigurationManager) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function getConfigurations() |
||
| 41 | } |
||
| 42 |