You are here

protected function ConfigBit::expectedTargetConfig in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.8

Same name and namespace in other branches
  1. 9.0.x 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\Config

Code

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);
}