You are here

public function ConfigOverriderLowPriority::getCacheableMetadata in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php \Drupal\config_override_test\ConfigOverriderLowPriority::getCacheableMetadata()

Gets the cacheability metadata associated with the config factory override.

Parameters

string $name: The name of the configuration override to get metadata for.

Return value

\Drupal\Core\Cache\CacheableMetadata A cacheable metadata object.

Overrides ConfigFactoryOverrideInterface::getCacheableMetadata

File

core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php, line 56
Contains \Drupal\config_override_test\ConfigOverriderLowPriority.

Class

ConfigOverriderLowPriority
Tests module overrides for configuration.

Namespace

Drupal\config_override_test

Code

public function getCacheableMetadata($name) {
  return new CacheableMetadata();
}