1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
namespace Doctrine \Tests \ORM \Functional \Ticket ;
4
6
5
7
use Doctrine \Common \Collections \ArrayCollection ;
6
8
use Doctrine \Common \Collections \Collection ;
9
+ use Doctrine \ORM \Mapping \Column ;
10
+ use Doctrine \ORM \Mapping \Entity ;
11
+ use Doctrine \ORM \Mapping \GeneratedValue ;
12
+ use Doctrine \ORM \Mapping \Id ;
13
+ use Doctrine \ORM \Mapping \ManyToOne ;
14
+ use Doctrine \ORM \Mapping \ManyToMany ;
15
+ use Doctrine \ORM \Mapping \OneToMany ;
16
+ use Doctrine \Tests \OrmFunctionalTestCase ;
7
17
8
18
/**
9
19
* @group GH-4252
10
20
*/
11
- class GH4252Test extends \ Doctrine \ Tests \ OrmFunctionalTestCase
21
+ class GH4252Test extends OrmFunctionalTestCase
12
22
{
13
- protected function setUp ()
23
+ protected function setUp () : void
14
24
{
15
25
parent ::setUp ();
16
26
17
- $ this ->_schemaTool ->createSchema (array (
27
+ $ this ->_schemaTool ->createSchema ([
18
28
$ this ->_em ->getClassMetadata (GH4252City::class),
19
29
$ this ->_em ->getClassMetadata (GH4252Resident::class),
20
30
$ this ->_em ->getClassMetadata (GH4252Address::class),
21
- ) );
31
+ ] );
22
32
}
23
33
24
34
public function testIssue ()
@@ -42,7 +52,7 @@ public function testIssue()
42
52
$ this ->_em ->refresh ($ city );
43
53
44
54
$ resident = $ city ->getResidents ()->first ();
45
- $ address = $ resident ->getAddresses ()->first ();
55
+ $ address = $ resident ->getAddresses ()->first ();
46
56
47
57
$ this ->assertTrue ($ city ->getFlag ());
48
58
$ this ->assertTrue ($ resident ->getFlag ());
@@ -57,7 +67,9 @@ class GH4252City
57
67
{
58
68
/**
59
69
* @var int
60
- * @Id @Column(type="integer") @GeneratedValue
70
+ * @Id
71
+ * @Column(type="integer")
72
+ * @GeneratedValue
61
73
*/
62
74
private $ id ;
63
75
@@ -69,7 +81,6 @@ class GH4252City
69
81
70
82
/**
71
83
* @var GH4252Resident[]|Collection
72
- *
73
84
* @OneToMany(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\GH4252Resident", mappedBy="city", cascade={"persist","refresh"})
74
85
*/
75
86
private $ residents ;
@@ -130,7 +141,6 @@ class GH4252Resident
130
141
131
142
/**
132
143
* @var GH4252Address[]|Collection
133
- *
134
144
* @ManyToMany(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\GH4252Address", fetch="EXTRA_LAZY", cascade={"persist","refresh"})
135
145
*/
136
146
private $ addresses ;
@@ -180,7 +190,9 @@ class GH4252Address
180
190
{
181
191
/**
182
192
* @var int
183
- * @Id @Column(type="integer") @GeneratedValue
193
+ * @Id
194
+ * @Column(type="integer")
195
+ * @GeneratedValue
184
196
*/
185
197
private $ id ;
186
198
0 commit comments