1 | <?php |
||
15 | class GraphQLConfigOverrides implements ConfigFactoryOverrideInterface { |
||
16 | |||
17 | /** |
||
18 | * The config storage service. |
||
19 | * |
||
20 | * @var \Drupal\Core\Config\StorageInterface |
||
21 | */ |
||
22 | protected $baseStorage; |
||
23 | |||
24 | /** |
||
25 | * The negotiator manager service. |
||
26 | * |
||
27 | * @var \Drupal\language\LanguageNegotiationMethodManager |
||
28 | */ |
||
29 | protected $negotiatorManager; |
||
30 | |||
31 | /** |
||
32 | * GraphQLConfigOverrides constructor. |
||
33 | * |
||
34 | * @param \Drupal\Core\Config\StorageInterface $storage |
||
35 | * The config storage service. |
||
36 | */ |
||
37 | public function __construct(StorageInterface $storage, LanguageNegotiationMethodManager $negotiatorManager) { |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function loadOverrides($names) { |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function getCacheSuffix() { |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) { |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function getCacheableMetadata($name) { |
||
80 | |||
81 | } |
||
82 |