Skip to content

Commit fa1483f

Browse files
committed
Fix entity
1 parent a7e0aaa commit fa1483f

File tree

1 file changed

+16
-0
lines changed
  • tests/Type/Doctrine/data/QueryResult/Entities

1 file changed

+16
-0
lines changed

tests/Type/Doctrine/data/QueryResult/Entities/Many.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ class Many
109109
*/
110110
class Bug245Episode
111111
{
112+
/**
113+
* @Column(type="bigint")
114+
* @Id
115+
*
116+
* @var string
117+
*/
118+
public $id;
119+
112120
/**
113121
* @var \Doctrine\Common\Collections\Collection<Bug245Segment>
114122
* @ORM\OneToMany(
@@ -127,6 +135,14 @@ class Bug245Episode
127135
*/
128136
class Bug245Segment
129137
{
138+
/**
139+
* @Column(type="bigint")
140+
* @Id
141+
*
142+
* @var string
143+
*/
144+
public $id;
145+
130146
/**
131147
* @ORM\ManyToOne(
132148
* targetEntity="\QueryResult\Entities\Bug245Episode",

0 commit comments

Comments
 (0)