From 4dbaa8b017a1dd3e3ced4bcbc65ac0786194fbcd Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Tue, 5 Apr 2016 08:33:37 +0900 Subject: [PATCH] Issue #2696919 by chgasparoto, snehi: EntityResource annotation class has @see after plugin annotation --- core/modules/rest/src/Plugin/rest/resource/EntityResource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/rest/src/Plugin/rest/resource/EntityResource.php b/core/modules/rest/src/Plugin/rest/resource/EntityResource.php index a830d97bacc..58270a47b22 100644 --- a/core/modules/rest/src/Plugin/rest/resource/EntityResource.php +++ b/core/modules/rest/src/Plugin/rest/resource/EntityResource.php @@ -18,6 +18,8 @@ use Symfony\Component\HttpKernel\Exception\HttpException; /** * Represents entities as resources. * + * @see \Drupal\rest\Plugin\Deriver\EntityDeriver + * * @RestResource( * id = "entity", * label = @Translation("Entity"), @@ -28,8 +30,6 @@ use Symfony\Component\HttpKernel\Exception\HttpException; * "https://www.drupal.org/link-relations/create" = "/entity/{entity_type}" * } * ) - * - * @see \Drupal\rest\Plugin\Deriver\EntityDeriver */ class EntityResource extends ResourceBase {