1
0
mirror of synced 2025-03-05 20:36:15 +03:00

#6284 removing unused lazy entity

This commit is contained in:
Marco Pivetta 2017-08-22 21:41:04 +02:00
parent c29a1e96b7
commit c9d1f852de
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -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
{