You are here

public function Element::setTypedDataManager in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::setTypedDataManager()

Sets the typed config manager.

Overrides \Drupal\Core\TypedData\TypedDataTrait::setTypedDataManager() to ensure that only typed configuration manager can be used.

Parameters

\Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager: The typed config manager. This must be an instance of \Drupal\Core\Config\TypedConfigManagerInterface. If it is not, then this method will error when assertions are enabled. We can not narrow the typehint as this will cause PHP errors.

Return value

$this

Overrides TypedDataTrait::setTypedDataManager

1 call to Element::setTypedDataManager()
Element::getTypedDataManager in core/lib/Drupal/Core/Config/Schema/Element.php
Gets the typed configuration manager.

File

core/lib/Drupal/Core/Config/Schema/Element.php, line 52

Class

Element
Defines a generic configuration element.

Namespace

Drupal\Core\Config\Schema

Code

public function setTypedDataManager(TypedDataManagerInterface $typed_data_manager) {
  assert($typed_data_manager instanceof TypedConfigManagerInterface, '$typed_data_manager should be an instance of \\Drupal\\Core\\Config\\TypedConfigManagerInterface.');
  $this->typedDataManager = $typed_data_manager;
  return $this;
}