@@ -101,39 +101,26 @@ public function testUpdateTranslations(): void
101
101
}
102
102
}
103
103
104
- /**
105
- * @ORM\Entity()
106
- *
107
- * @ORM\InheritanceType(value="SINGLE_TABLE")
108
- *
109
- * @ORM\DiscriminatorMap({"base"="EntityInheritance_BaseEntityClass", "child"="EntityInheritance_ChildEntityClass"})
110
- *
111
- * @ORM\DiscriminatorColumn(name="discriminator", type="string")
112
- */
113
104
#[Polyglot \Locale(primary: 'en_GB ' )]
105
+ #[ORM \Entity]
106
+ #[ORM \InheritanceType(value: 'SINGLE_TABLE ' )]
107
+ #[ORM \DiscriminatorMap(['base ' => 'EntityInheritance_BaseEntityClass ' , 'child ' => 'EntityInheritance_ChildEntityClass ' ])]
108
+ #[ORM \DiscriminatorColumn(name: 'discriminator ' , type: 'string ' )]
114
109
class EntityInheritance_BaseEntityClass
115
110
{
116
- /**
117
- * @ORM\Column(type="integer")
118
- *
119
- * @ORM\Id
120
- *
121
- * @ORM\GeneratedValue
122
- */
111
+ #[ORM \Column(type: 'integer ' )]
112
+ #[ORM \Id]
113
+ #[ORM \GeneratedValue]
123
114
private ?int $ id = null ;
124
115
125
116
private string $ discriminator ;
126
117
127
- /**
128
- * @ORM\OneToMany(targetEntity="EntityInheritance_BaseEntityClassTranslation", mappedBy="entity")
129
- */
130
118
#[Polyglot \TranslationCollection]
119
+ #[ORM \OneToMany(targetEntity: \EntityInheritance_BaseEntityClassTranslation::class, mappedBy: 'entity ' )]
131
120
private Collection $ translations ;
132
121
133
- /**
134
- * @ORM\Column(type="string")
135
- */
136
122
#[Polyglot \Translatable]
123
+ #[ORM \Column(type: 'string ' )]
137
124
private TranslatableInterface |string |null $ text = null ;
138
125
139
126
public function __construct ()
@@ -157,52 +144,34 @@ public function getText(): TranslatableInterface
157
144
}
158
145
}
159
146
160
- /**
161
- * @ORM\Entity
162
- */
147
+ #[ORM \Entity]
163
148
class EntityInheritance_BaseEntityClassTranslation
164
149
{
165
- /**
166
- * @ORM\Id
167
- *
168
- * @ORM\GeneratedValue
169
- *
170
- * @ORM\Column(type="integer")
171
- */
150
+ #[ORM \Id]
151
+ #[ORM \GeneratedValue]
152
+ #[ORM \Column(type: 'integer ' )]
172
153
private ?int $ id = null ;
173
154
174
- /**
175
- * @ORM\Column
176
- */
177
155
#[Polyglot \Locale]
156
+ #[ORM \Column]
178
157
private string $ locale ;
179
158
180
- /**
181
- * @ORM\ManyToOne(targetEntity="EntityInheritance_BaseEntityClass", inversedBy="translations")
182
- */
159
+ #[ORM \ManyToOne(targetEntity: \EntityInheritance_BaseEntityClass::class, inversedBy: 'translations ' )]
183
160
private EntityInheritance_BaseEntityClass $ entity ;
184
161
185
- /**
186
- * @ORM\Column()
187
- */
162
+ #[ORM \Column]
188
163
private string $ text ;
189
164
}
190
165
191
- /**
192
- * @ORM\Entity
193
- */
166
+ #[ORM \Entity]
194
167
class EntityInheritance_ChildEntityClass extends EntityInheritance_BaseEntityClass
195
168
{
196
- /**
197
- * @ORM\Column(type="string")
198
- */
199
169
#[Polyglot \Translatable]
170
+ #[ORM \Column(type: 'string ' )]
200
171
private TranslatableInterface |string |null $ extraText = null ;
201
172
202
- /**
203
- * @ORM\OneToMany(targetEntity="EntityInheritance_ChildEntityClassTranslation", mappedBy="entity")
204
- */
205
173
#[Polyglot \TranslationCollection]
174
+ #[ORM \OneToMany(targetEntity: \EntityInheritance_ChildEntityClassTranslation::class, mappedBy: 'entity ' )]
206
175
private Collection $ extraTranslations ;
207
176
208
177
public function __construct ()
@@ -222,33 +191,21 @@ public function getExtraText(): TranslatableInterface
222
191
}
223
192
}
224
193
225
- /**
226
- * @ORM\Entity
227
- */
194
+ #[ORM \Entity]
228
195
class EntityInheritance_ChildEntityClassTranslation
229
196
{
230
- /**
231
- * @ORM\Id
232
- *
233
- * @ORM\GeneratedValue
234
- *
235
- * @ORM\Column(type="integer")
236
- */
197
+ #[ORM \Id]
198
+ #[ORM \GeneratedValue]
199
+ #[ORM \Column(type: 'integer ' )]
237
200
private ?int $ id = null ;
238
201
239
- /**
240
- * @ORM\Column
241
- */
242
202
#[Polyglot \Locale]
203
+ #[ORM \Column]
243
204
private string $ locale ;
244
205
245
- /**
246
- * @ORM\ManyToOne(targetEntity="EntityInheritance_ChildEntityClass", inversedBy="extraTranslations")
247
- */
206
+ #[ORM \ManyToOne(targetEntity: \EntityInheritance_ChildEntityClass::class, inversedBy: 'extraTranslations ' )]
248
207
private EntityInheritance_ChildEntityClass $ entity ;
249
208
250
- /**
251
- * @ORM\Column()
252
- */
209
+ #[ORM \Column]
253
210
private string $ extraText ;
254
211
}
0 commit comments