diff --git a/core/lib/Drupal/Core/TypedData/TypedData.php b/core/lib/Drupal/Core/TypedData/TypedData.php index 243d48a92f6a19af4547e8a717a1836ed2a2af97..bc1702a70812f4e9dc624b1e49ff1009c3adb09b 100644 --- a/core/lib/Drupal/Core/TypedData/TypedData.php +++ b/core/lib/Drupal/Core/TypedData/TypedData.php @@ -59,12 +59,8 @@ public static function createInstance($definition, $name = NULL, TraversableType * root of a typed data tree. Defaults to NULL. * * @see \Drupal\Core\TypedData\TypedDataManager::create() - * - * @todo When \Drupal\Core\Config\TypedConfigManager has been fixed to use - * class-based definitions, type-hint $definition to - * DataDefinitionInterface. https://www.drupal.org/node/1928868 */ - public function __construct($definition, $name = NULL, TypedDataInterface $parent = NULL) { + public function __construct(DataDefinitionInterface $definition, $name = NULL, TypedDataInterface $parent = NULL) { $this->definition = $definition; $this->parent = $parent; $this->name = $name;