1 | <?php |
||
22 | final class ThemeSettingsManager implements ThemeSettingsManagerInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var SettingsManagerInterface |
||
26 | */ |
||
27 | private $decoratedSettingsManager; |
||
28 | |||
29 | /** |
||
30 | * @var ServiceRegistryInterface |
||
31 | */ |
||
32 | private $schemaRegistry; |
||
33 | |||
34 | /** |
||
35 | * @var ThemeSettingsSchemaProviderInterface |
||
36 | */ |
||
37 | private $themeSettingsSchemaProvider; |
||
38 | |||
39 | /** |
||
40 | * @param SettingsManagerInterface $decoratedSettingsManager |
||
41 | * @param ServiceRegistryInterface $schemaRegistry |
||
42 | * @param ThemeSettingsSchemaProviderInterface $themeSettingsSchemaProvider |
||
43 | */ |
||
44 | public function __construct( |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function load(ThemeInterface $theme, $namespace = null) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | public function save(SettingsInterface $settings) |
||
77 | } |
||
78 |