protected function ConfigBit::expectedTargetConfig in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 9.0.x
Same name and namespace in other branches
- 8.8 src/Config/ConfigBit.php \Drupal\varbase\Config\ConfigBit::expectedTargetConfig()
Check expected target config.
Parameters
array $config_action: The config action.
array $target_config_data: The target config data.
2 calls to ConfigBit::expectedTargetConfig()
- ConfigBit::applyConfigActionAdd in src/
Config/ ConfigBit.php - Apply Config Action Add.
- ConfigBit::applyConfigActionRemove in src/
Config/ ConfigBit.php - Apply Config Action Remove.
File
- src/
Config/ ConfigBit.php, line 444
Class
- ConfigBit
- Class ConfigBit.
Namespace
Drupal\varbase\ConfigCode
protected function expectedTargetConfig(array $config_action, array $target_config_data) {
return $this
->targetConfigExpectedToHave($config_action, $target_config_data) && $this
->targetConfigExpectedNotToHave($config_action, $target_config_data) && $this
->targetConfigExpectedToHaveIndex($config_action, $target_config_data) && $this
->targetConfigExpectedNotToHaveIndex($config_action, $target_config_data);
}