You are here

public function ConfigTest::setEnforcedDependencies in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest::setEnforcedDependencies()
  2. 10 core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest::setEnforcedDependencies()

Sets the enforced dependencies.

Parameters

array $dependencies: A config dependency array.

Return value

$this

See also

\Drupal\Core\Config\Entity\ConfigDependencyManager

File

core/modules/config/tests/config_test/src/Entity/ConfigTest.php, line 179

Class

ConfigTest
Defines the ConfigTest configuration entity.

Namespace

Drupal\config_test\Entity

Code

public function setEnforcedDependencies(array $dependencies) {
  $this->dependencies['enforced'] = $dependencies;
  return $this;
}