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 \ManyToMany ;
14
+ use Doctrine \ORM \Mapping \ManyToOne ;
15
+ use Doctrine \ORM \Mapping \OneToMany ;
16
+ use Doctrine \Tests \OrmFunctionalTestCase ;
17
+
18
+ use function assert ;
7
19
8
20
/**
9
21
* @group GH-4252
10
22
*/
11
- class GH4252Test extends \ Doctrine \ Tests \ OrmFunctionalTestCase
23
+ class GH4252Test extends OrmFunctionalTestCase
12
24
{
13
- protected function setUp ()
25
+ protected function setUp (): void
14
26
{
15
27
parent ::setUp ();
16
28
17
- $ this ->_schemaTool ->createSchema (array (
29
+ $ this ->_schemaTool ->createSchema ([
18
30
$ this ->_em ->getClassMetadata (GH4252City::class),
19
31
$ this ->_em ->getClassMetadata (GH4252Resident::class),
20
32
$ this ->_em ->getClassMetadata (GH4252Address::class),
21
- ) );
33
+ ] );
22
34
}
23
35
24
- public function testIssue ()
36
+ public function testIssue (): void
25
37
{
26
38
$ city = new GH4252City ([new GH4252Resident ([new GH4252Address ()])]);
27
39
28
40
$ this ->_em ->persist ($ city );
29
41
$ this ->_em ->flush ();
30
42
$ this ->_em ->clear ();
31
43
32
- /** @var GH4252City $city */
33
44
$ city = $ this ->_em ->find (GH4252City::class, $ city ->getId ());
45
+ assert ($ city instanceof GH4252City);
34
46
$ city ->setFlag (false );
35
- /** @var GH4252Resident $resident */
36
47
$ resident = $ city ->getResidents ()->first ();
48
+ assert ($ resident instanceof GH4252Resident);
37
49
$ resident ->setFlag (false );
38
- /** @var GH4252Address $address */
39
50
$ address = $ resident ->getAddresses ()->first ();
51
+ assert ($ address instanceof GH4252Address);
40
52
$ address ->setFlag (false );
41
53
42
54
$ this ->_em ->refresh ($ city );
43
55
44
56
$ resident = $ city ->getResidents ()->first ();
45
- $ address = $ resident ->getAddresses ()->first ();
57
+ $ address = $ resident ->getAddresses ()->first ();
46
58
47
59
$ this ->assertTrue ($ city ->getFlag ());
48
60
$ this ->assertTrue ($ resident ->getFlag ());
@@ -57,7 +69,9 @@ class GH4252City
57
69
{
58
70
/**
59
71
* @var int
60
- * @Id @Column(type="integer") @GeneratedValue
72
+ * @Id
73
+ * @Column(type="integer")
74
+ * @GeneratedValue
61
75
*/
62
76
private $ id ;
63
77
@@ -69,7 +83,6 @@ class GH4252City
69
83
70
84
/**
71
85
* @var GH4252Resident[]|Collection
72
- *
73
86
* @OneToMany(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\GH4252Resident", mappedBy="city", cascade={"persist","refresh"})
74
87
*/
75
88
private $ residents ;
@@ -81,25 +94,26 @@ public function __construct(array $residents)
81
94
$ this ->residents ->add ($ resident );
82
95
$ resident ->setCity ($ this );
83
96
}
97
+
84
98
$ this ->flag = true ;
85
99
}
86
100
87
- public function getId () : int
101
+ public function getId (): int
88
102
{
89
103
return $ this ->id ;
90
104
}
91
105
92
- public function getFlag () : bool
106
+ public function getFlag (): bool
93
107
{
94
108
return $ this ->flag ;
95
109
}
96
110
97
- public function setFlag (bool $ flag ) : void
111
+ public function setFlag (bool $ flag ): void
98
112
{
99
113
$ this ->flag = $ flag ;
100
114
}
101
115
102
- public function getResidents () : Collection
116
+ public function getResidents (): Collection
103
117
{
104
118
return $ this ->residents ;
105
119
}
@@ -130,7 +144,6 @@ class GH4252Resident
130
144
131
145
/**
132
146
* @var GH4252Address[]|Collection
133
- *
134
147
* @ManyToMany(targetEntity="Doctrine\Tests\ORM\Functional\Ticket\GH4252Address", fetch="EXTRA_LAZY", cascade={"persist","refresh"})
135
148
*/
136
149
private $ addresses ;
@@ -141,35 +154,36 @@ public function __construct(array $addresses)
141
154
foreach ($ addresses as $ address ) {
142
155
$ this ->addresses ->add ($ address );
143
156
}
157
+
144
158
$ this ->flag = true ;
145
159
}
146
160
147
- public function getId () : int
161
+ public function getId (): int
148
162
{
149
163
return $ this ->id ;
150
164
}
151
165
152
- public function getCity () : GH4252City
166
+ public function getCity (): GH4252City
153
167
{
154
168
return $ this ->city ;
155
169
}
156
170
157
- public function setCity (GH4252City $ city ) : void
171
+ public function setCity (GH4252City $ city ): void
158
172
{
159
173
$ this ->city = $ city ;
160
174
}
161
175
162
- public function getFlag () : bool
176
+ public function getFlag (): bool
163
177
{
164
178
return $ this ->flag ;
165
179
}
166
180
167
- public function setFlag (bool $ flag ) : void
181
+ public function setFlag (bool $ flag ): void
168
182
{
169
183
$ this ->flag = $ flag ;
170
184
}
171
185
172
- public function getAddresses () : Collection
186
+ public function getAddresses (): Collection
173
187
{
174
188
return $ this ->addresses ;
175
189
}
@@ -180,7 +194,9 @@ class GH4252Address
180
194
{
181
195
/**
182
196
* @var int
183
- * @Id @Column(type="integer") @GeneratedValue
197
+ * @Id
198
+ * @Column(type="integer")
199
+ * @GeneratedValue
184
200
*/
185
201
private $ id ;
186
202
@@ -195,17 +211,17 @@ public function __construct()
195
211
$ this ->flag = true ;
196
212
}
197
213
198
- public function getId () : int
214
+ public function getId (): int
199
215
{
200
216
return $ this ->id ;
201
217
}
202
218
203
- public function getFlag () : bool
219
+ public function getFlag (): bool
204
220
{
205
221
return $ this ->flag ;
206
222
}
207
223
208
- public function setFlag (bool $ flag ) : void
224
+ public function setFlag (bool $ flag ): void
209
225
{
210
226
$ this ->flag = $ flag ;
211
227
}
0 commit comments