From 7d0a226b6a1a30a9b5dee61db54296f83f62fcd4 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Tue, 16 May 2017 12:31:49 +0100 Subject: [PATCH] Issue #2873832 by josephcheek: Add Change record to @deprecated in EntityInterface --- core/lib/Drupal/Core/Entity/EntityInterface.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/lib/Drupal/Core/Entity/EntityInterface.php b/core/lib/Drupal/Core/Entity/EntityInterface.php index 8890fb7f34ca..9cdb435f29b7 100644 --- a/core/lib/Drupal/Core/Entity/EntityInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityInterface.php @@ -110,6 +110,7 @@ public function label(); * @deprecated in Drupal 8.0.0, intended to be removed in Drupal 9.0.0 * Use \Drupal\Core\Entity\EntityInterface::toUrl() instead. * + * @see https://www.drupal.org/node/2614344 * @see \Drupal\Core\Entity\EntityInterface::toUrl */ public function urlInfo($rel = 'canonical', array $options = []); @@ -167,6 +168,7 @@ public function toUrl($rel = 'canonical', array $options = []); * @deprecated in Drupal 8.0.0, intended to be removed in Drupal 9.0.0 * Please use toUrl() instead. * + * @see https://www.drupal.org/node/2614344 * @see \Drupal\Core\Entity\EntityInterface::toUrl */ public function url($rel = 'canonical', $options = []); @@ -189,6 +191,7 @@ public function url($rel = 'canonical', $options = []); * @deprecated in Drupal 8.0.0, intended to be removed in Drupal 9.0.0 * Please use toLink() instead. * + * @see https://www.drupal.org/node/2614344 * @see \Drupal\Core\Entity\EntityInterface::toLink */ public function link($text = NULL, $rel = 'canonical', array $options = []); -- GitLab