public function ConfigOverrider::getCacheSuffix in Drupal 9
Same name in this branch
- 9 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php \Drupal\config_entity_static_cache_test\ConfigOverrider::getCacheSuffix()
- 9 core/modules/config/tests/config_override_test/src/ConfigOverrider.php \Drupal\config_override_test\ConfigOverrider::getCacheSuffix()
- 9 core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php \Drupal\settings_tray_override_test\ConfigOverrider::getCacheSuffix()
Same name and namespace in other branches
- 8 core/modules/config/tests/config_override_test/src/ConfigOverrider.php \Drupal\config_override_test\ConfigOverrider::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_test/ src/ ConfigOverrider.php, line 32
Class
- ConfigOverrider
- Tests module overrides for configuration.
Namespace
Drupal\config_override_testCode
public function getCacheSuffix() {
return 'ConfigOverrider';
}