From 01d226aff0b9688141e5c5a5bb79f916e0667f91 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Wed, 21 Jun 2017 06:21:22 +0200 Subject: [PATCH] #5715 removed superfluous mapping information --- .../Tests/ORM/Tools/Console/MetadataFilterTest.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php b/tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php index 4873e6ae9..24f3b54a3 100644 --- a/tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php @@ -144,41 +144,41 @@ class MetadataFilterTest extends \Doctrine\Tests\OrmTestCase /** @Entity */ class MetadataFilterTestEntityAaa { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; } /** @Entity */ class MetadataFilterTestEntityBbb { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; } /** @Entity */ class MetadataFilterTestEntityCcc { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; } /** @Entity */ class MetadataFilterTestEntityFoo { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; } /** @Entity */ class MetadataFilterTestEntityBar { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; } /** @Entity */ class MetadataFilterTestEntityFooBar { - /** @Id @Column(type="integer") */ + /** @Id @Column */ protected $id; }