From c9d1f852de15581f276abb80e6b712a20cd2ce9e Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 22 Aug 2017 21:41:04 +0200 Subject: [PATCH] #6284 removing unused lazy entity --- .../Tests/ORM/Functional/Ticket/GH6217Test.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php index 3ac810fb6..861925f08 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php @@ -49,18 +49,6 @@ final class GH6217Test extends OrmFunctionalTestCase } } -/** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ -class GH6217LazyEntity -{ - /** @Id @Column(type="string") @GeneratedValue(strategy="NONE") */ - public $id; - - public function __construct() - { - $this->id = uniqid(self::class, true); - } -} - /** @Entity @Cache(usage="NONSTRICT_READ_WRITE") */ class GH6217AssociatedEntity {