1 | <?php |
||
14 | class GraphQLConfigOverrides implements ConfigFactoryOverrideInterface { |
||
15 | |||
16 | /** |
||
17 | * The config storage service. |
||
18 | * |
||
19 | * @var \Drupal\Core\Config\StorageInterface |
||
20 | */ |
||
21 | protected $baseStorage; |
||
22 | |||
23 | /** |
||
24 | * GraphQLConfigOverrides constructor. |
||
25 | * |
||
26 | * @param \Drupal\Core\Config\StorageInterface $storage |
||
27 | * The config storage service. |
||
28 | */ |
||
29 | public function __construct(StorageInterface $storage) { |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function loadOverrides($names) { |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getCacheSuffix() { |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) { |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function getCacheableMetadata($name) { |
||
69 | |||
70 | } |
||
71 |