From ca39abcd71db89e6185988a37a5431592ee9a611 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 22 Aug 2017 21:17:14 +0200 Subject: [PATCH] #6284 reducing annotation mapping clutter --- .../ORM/Functional/Ticket/GH6217Test.php | 24 +++---------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php index 2afed3db7..be9ea2a74 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php @@ -54,13 +54,7 @@ final class GH6217Test extends OrmFunctionalTestCase /** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ class GH6217User { - /** - * @Id - * @Column(type="string") - * @GeneratedValue(strategy="NONE") - * - * @var string - */ + /** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */ public $id; public function __construct() @@ -72,13 +66,7 @@ class GH6217User /** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ class GH6217Profile { - /** - * @Id - * @Column(type="string") - * @GeneratedValue(strategy="NONE") - * - * @var string - */ + /** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */ public $id; public function __construct() @@ -90,13 +78,7 @@ class GH6217Profile /** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ class GH6217Category { - /** - * @Id - * @Column(type="string") - * @GeneratedValue(strategy="NONE") - * - * @var string - */ + /** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */ public $id; public function __construct()