public function CacheabilityMetadataConfigOverride::getCacheSuffix in Drupal 8
Same name and namespace in other branches
- 9 core/modules/config/tests/config_override_integration_test/src/CacheabilityMetadataConfigOverride.php \Drupal\config_override_integration_test\CacheabilityMetadataConfigOverride::getCacheSuffix()
The string to append to the configuration static cache name.
Return value
string A string to append to the configuration static cache name.
Overrides ConfigFactoryOverrideInterface::getCacheSuffix
File
- core/
modules/ config/ tests/ config_override_integration_test/ src/ CacheabilityMetadataConfigOverride.php, line 36
Class
- CacheabilityMetadataConfigOverride
- Test implementation of a config override that provides cacheability metadata.
Namespace
Drupal\config_override_integration_testCode
public function getCacheSuffix() {
return 'config_override_integration_test';
}