public Element::setTypedDataManager(TypedDataManagerInterface $typed_data_manager)
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
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; }
Please login to continue.