| 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) { |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | public function getCacheSuffix() { |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) { |
||
| 61 | |||
| 62 | /** |
||
| 63 | * {@inheritdoc} |
||
| 64 | */ |
||
| 65 | public function getCacheableMetadata($name) { |
||
| 68 | |||
| 69 | } |
||
| 70 |