From a2ee636f3404806a98ae9e882d0f07b8a74ddc4f Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Thu, 27 Feb 2014 13:24:09 -0800 Subject: [PATCH] Issue #2199369 by paulh, larowlan: Update docs for EntityInterface::urlInfo to match current code --- core/lib/Drupal/Core/Entity/EntityInterface.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Entity/EntityInterface.php b/core/lib/Drupal/Core/Entity/EntityInterface.php index 3e6af827dd59..057727b11365 100644 --- a/core/lib/Drupal/Core/Entity/EntityInterface.php +++ b/core/lib/Drupal/Core/Entity/EntityInterface.php @@ -119,8 +119,9 @@ interface EntityInterface extends AccessibleInterface { * The link relationship type, for example: canonical or edit-form. * * @return mixed[] - * An array containing the 'path' and 'options' keys used to build the URI - * of the entity, and matching the signature of url(). + * An array containing 'route_name', 'route_parameters' and 'options' keys + * used to build the URI of the entity and matching the signature of + * \Drupal::url(). */ public function urlInfo($rel = 'canonical');