Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 01d226a

Browse files
committed
doctrine#5715 removed superfluous mapping information
1 parent 29fe76c commit 01d226a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,41 +144,41 @@ public function testFilterWithRegex() : void
144144
/** @Entity */
145145
class MetadataFilterTestEntityAaa
146146
{
147-
/** @Id @Column(type="integer") */
147+
/** @Id @Column */
148148
protected $id;
149149
}
150150

151151
/** @Entity */
152152
class MetadataFilterTestEntityBbb
153153
{
154-
/** @Id @Column(type="integer") */
154+
/** @Id @Column */
155155
protected $id;
156156
}
157157

158158
/** @Entity */
159159
class MetadataFilterTestEntityCcc
160160
{
161-
/** @Id @Column(type="integer") */
161+
/** @Id @Column */
162162
protected $id;
163163
}
164164

165165
/** @Entity */
166166
class MetadataFilterTestEntityFoo
167167
{
168-
/** @Id @Column(type="integer") */
168+
/** @Id @Column */
169169
protected $id;
170170
}
171171

172172
/** @Entity */
173173
class MetadataFilterTestEntityBar
174174
{
175-
/** @Id @Column(type="integer") */
175+
/** @Id @Column */
176176
protected $id;
177177
}
178178

179179
/** @Entity */
180180
class MetadataFilterTestEntityFooBar
181181
{
182-
/** @Id @Column(type="integer") */
182+
/** @Id @Column */
183183
protected $id;
184184
}

0 commit comments

Comments
 (0)