Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / TypedData.php
index 243d48a92f6a19af4547e8a717a1836ed2a2af97..bc1702a70812f4e9dc624b1e49ff1009c3adb09b 100644 (file)
@@ -59,12 +59,8 @@ abstract class TypedData implements TypedDataInterface, PluginInspectionInterfac
    *   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;