@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | $this->putTripAroundEurope(); |
120 | 120 | |
121 | 121 | $dql = 'SELECT t, p, c ' |
122 | - . 'FROM Doctrine\Tests\Models\Navigation\NavTour t ' |
|
123 | - . 'INNER JOIN t.pois p ' |
|
124 | - . 'INNER JOIN p.country c'; |
|
122 | + . 'FROM Doctrine\Tests\Models\Navigation\NavTour t ' |
|
123 | + . 'INNER JOIN t.pois p ' |
|
124 | + . 'INNER JOIN p.country c'; |
|
125 | 125 | |
126 | 126 | $query = $this->em->createQuery($dql); |
127 | 127 | $tours = $query->getResult(); |
@@ -141,9 +141,9 @@ discard block |
||
141 | 141 | $this->putTripAroundEurope(); |
142 | 142 | |
143 | 143 | $dql = 'SELECT t ' |
144 | - . 'FROM Doctrine\Tests\Models\Navigation\NavTour t ' |
|
145 | - . ', Doctrine\Tests\Models\Navigation\NavPointOfInterest p ' |
|
146 | - . 'WHERE p MEMBER OF t.pois'; |
|
144 | + . 'FROM Doctrine\Tests\Models\Navigation\NavTour t ' |
|
145 | + . ', Doctrine\Tests\Models\Navigation\NavPointOfInterest p ' |
|
146 | + . 'WHERE p MEMBER OF t.pois'; |
|
147 | 147 | |
148 | 148 | $query = $this->em->createQuery($dql); |
149 | 149 | $tours = $query->getResult(); |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | public function testBulkUpdateIssueDDC368() : void |
327 | 327 | { |
328 | 328 | $this->em->createQuery('UPDATE ' . CompanyEmployee::class . ' AS p SET p.salary = 1') |
329 | - ->execute(); |
|
329 | + ->execute(); |
|
330 | 330 | |
331 | 331 | $query = $this->em->createQuery('SELECT count(p.id) FROM ' . CompanyEmployee::class . ' p WHERE p.salary = 1'); |
332 | 332 | $result = $query->getResult(); |
@@ -344,9 +344,9 @@ discard block |
||
344 | 344 | public function testBulkUpdateNonScalarParameterDDC1341() : void |
345 | 345 | { |
346 | 346 | $this->em->createQuery('UPDATE ' . CompanyEmployee::class . ' AS p SET p.startDate = ?0 WHERE p.department = ?1') |
347 | - ->setParameter(0, new DateTime()) |
|
348 | - ->setParameter(1, 'IT') |
|
349 | - ->execute(); |
|
347 | + ->setParameter(0, new DateTime()) |
|
348 | + ->setParameter(1, 'IT') |
|
349 | + ->execute(); |
|
350 | 350 | |
351 | 351 | self::addToAssertionCount(1); |
352 | 352 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | $this->em->clear(); |
53 | 53 | |
54 | - $query = $this->em->createQuery('select p from ' . CompanyPerson::class . ' p order by p.name desc'); |
|
54 | + $query = $this->em->createQuery('select p from '.CompanyPerson::class.' p order by p.name desc'); |
|
55 | 55 | |
56 | 56 | $entities = $query->getResult(); |
57 | 57 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | $this->em->clear(); |
72 | 72 | |
73 | - $query = $this->em->createQuery('select p from ' . CompanyEmployee::class . ' p'); |
|
73 | + $query = $this->em->createQuery('select p from '.CompanyEmployee::class.' p'); |
|
74 | 74 | |
75 | 75 | $entities = $query->getResult(); |
76 | 76 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | $this->em->clear(); |
95 | 95 | |
96 | - $query = $this->em->createQuery('update ' . CompanyEmployee::class . " p set p.name = ?1, p.department = ?2 where p.name='Guilherme Blanco' and p.salary = ?3"); |
|
96 | + $query = $this->em->createQuery('update '.CompanyEmployee::class." p set p.name = ?1, p.department = ?2 where p.name='Guilherme Blanco' and p.salary = ?3"); |
|
97 | 97 | |
98 | 98 | $query->setParameter(1, 'NewName', 'string'); |
99 | 99 | $query->setParameter(2, 'NewDepartment'); |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | |
105 | 105 | self::assertEquals(1, $numUpdated); |
106 | 106 | |
107 | - $query = $this->em->createQuery('delete from ' . CompanyPerson::class . ' p'); |
|
107 | + $query = $this->em->createQuery('delete from '.CompanyPerson::class.' p'); |
|
108 | 108 | |
109 | 109 | $numDeleted = $query->execute(); |
110 | 110 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $this->em->flush(); |
180 | 180 | $this->em->clear(); |
181 | 181 | |
182 | - $query = $this->em->createQuery('select p, s from ' . CompanyPerson::class . ' p join p.spouse s where p.name=\'Mary Smith\''); |
|
182 | + $query = $this->em->createQuery('select p, s from '.CompanyPerson::class.' p join p.spouse s where p.name=\'Mary Smith\''); |
|
183 | 183 | |
184 | 184 | $result = $query->getResult(); |
185 | 185 | |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | |
216 | 216 | $this->em->clear(); |
217 | 217 | |
218 | - $query = $this->em->createQuery('select p, f from ' . CompanyPerson::class . ' p join p.friends f where p.name=?1'); |
|
218 | + $query = $this->em->createQuery('select p, f from '.CompanyPerson::class.' p join p.friends f where p.name=?1'); |
|
219 | 219 | |
220 | 220 | $query->setParameter(1, 'Roman'); |
221 | 221 | |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | $this->em->flush(); |
286 | 286 | $this->em->clear(); |
287 | 287 | |
288 | - $q = $this->em->createQuery('select a from ' . CompanyEvent::class . ' a where a.id = ?1'); |
|
288 | + $q = $this->em->createQuery('select a from '.CompanyEvent::class.' a where a.id = ?1'); |
|
289 | 289 | |
290 | 290 | $q->setParameter(1, $event1->getId()); |
291 | 291 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | $this->em->clear(); |
302 | 302 | |
303 | - $q = $this->em->createQuery('select a from ' . CompanyOrganization::class . ' a where a.id = ?1'); |
|
303 | + $q = $this->em->createQuery('select a from '.CompanyOrganization::class.' a where a.id = ?1'); |
|
304 | 304 | |
305 | 305 | $q->setParameter(1, $org->getId()); |
306 | 306 | |
@@ -325,10 +325,10 @@ discard block |
||
325 | 325 | */ |
326 | 326 | public function testBulkUpdateIssueDDC368() : void |
327 | 327 | { |
328 | - $this->em->createQuery('UPDATE ' . CompanyEmployee::class . ' AS p SET p.salary = 1') |
|
328 | + $this->em->createQuery('UPDATE '.CompanyEmployee::class.' AS p SET p.salary = 1') |
|
329 | 329 | ->execute(); |
330 | 330 | |
331 | - $query = $this->em->createQuery('SELECT count(p.id) FROM ' . CompanyEmployee::class . ' p WHERE p.salary = 1'); |
|
331 | + $query = $this->em->createQuery('SELECT count(p.id) FROM '.CompanyEmployee::class.' p WHERE p.salary = 1'); |
|
332 | 332 | $result = $query->getResult(); |
333 | 333 | |
334 | 334 | self::assertGreaterThan(0, $result); |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | */ |
344 | 344 | public function testBulkUpdateNonScalarParameterDDC1341() : void |
345 | 345 | { |
346 | - $this->em->createQuery('UPDATE ' . CompanyEmployee::class . ' AS p SET p.startDate = ?0 WHERE p.department = ?1') |
|
346 | + $this->em->createQuery('UPDATE '.CompanyEmployee::class.' AS p SET p.startDate = ?0 WHERE p.department = ?1') |
|
347 | 347 | ->setParameter(0, new DateTime()) |
348 | 348 | ->setParameter(1, 'IT') |
349 | 349 | ->execute(); |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | $this->em->flush(); |
402 | 402 | $this->em->clear(); |
403 | 403 | |
404 | - $dqlManager = $this->em->createQuery('SELECT m FROM ' . CompanyManager::class . ' m WHERE m.spouse = ?1') |
|
404 | + $dqlManager = $this->em->createQuery('SELECT m FROM '.CompanyManager::class.' m WHERE m.spouse = ?1') |
|
405 | 405 | ->setParameter(1, $person->getId()) |
406 | 406 | ->getSingleResult(); |
407 | 407 |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | public function testAggregateWithHavingClause() : void |
28 | 28 | { |
29 | 29 | $dql = 'SELECT p.department, AVG(p.salary) AS avgSalary ' . |
30 | - 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
31 | - 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
|
30 | + 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
31 | + 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
|
32 | 32 | |
33 | 33 | $result = $this->em->createQuery($dql)->getScalarResult(); |
34 | 34 | |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | public function testUnnamedScalarResultsAreOneBased() : void |
43 | 43 | { |
44 | 44 | $dql = 'SELECT p.department, AVG(p.salary) ' . |
45 | - 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
46 | - 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
|
45 | + 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
46 | + 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
|
47 | 47 | |
48 | 48 | $result = $this->em->createQuery($dql)->getScalarResult(); |
49 | 49 | |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | public function testOrderByResultVariableCollectionSize() : void |
56 | 56 | { |
57 | 57 | $dql = 'SELECT p.name, size(p.friends) AS friends ' . |
58 | - 'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
|
59 | - 'WHERE p.friends IS NOT EMPTY ' . |
|
60 | - 'ORDER BY friends DESC, p.name DESC'; |
|
58 | + 'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
|
59 | + 'WHERE p.friends IS NOT EMPTY ' . |
|
60 | + 'ORDER BY friends DESC, p.name DESC'; |
|
61 | 61 | |
62 | 62 | $result = $this->em->createQuery($dql)->getScalarResult(); |
63 | 63 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function testIsNullAssociation() : void |
80 | 80 | { |
81 | 81 | $dql = 'SELECT p FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
82 | - 'WHERE p.spouse IS NULL'; |
|
82 | + 'WHERE p.spouse IS NULL'; |
|
83 | 83 | $query = $this->em->createQuery($dql); |
84 | 84 | $result = $query->getResult(); |
85 | 85 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | public function testSelectSubselect() : void |
99 | 99 | { |
100 | 100 | $dql = 'SELECT p, (SELECT c.brand FROM Doctrine\Tests\Models\Company\CompanyCar c WHERE p.car = c) brandName ' . |
101 | - 'FROM Doctrine\Tests\Models\Company\CompanyManager p'; |
|
101 | + 'FROM Doctrine\Tests\Models\Company\CompanyManager p'; |
|
102 | 102 | $query = $this->em->createQuery($dql); |
103 | 103 | $result = $query->getArrayResult(); |
104 | 104 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | public function testInSubselect() : void |
114 | 114 | { |
115 | 115 | $dql = 'SELECT p.name FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
116 | - "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')"; |
|
116 | + "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')"; |
|
117 | 117 | $query = $this->em->createQuery($dql); |
118 | 118 | $result = $query->getScalarResult(); |
119 | 119 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | public function testGroupByMultipleFields() : void |
129 | 129 | { |
130 | 130 | $dql = 'SELECT p.department, p.name, count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
131 | - 'GROUP BY p.department, p.name'; |
|
131 | + 'GROUP BY p.department, p.name'; |
|
132 | 132 | $query = $this->em->createQuery($dql); |
133 | 133 | $result = $query->getResult(); |
134 | 134 |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | |
27 | 27 | public function testAggregateWithHavingClause() : void |
28 | 28 | { |
29 | - $dql = 'SELECT p.department, AVG(p.salary) AS avgSalary ' . |
|
30 | - 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
29 | + $dql = 'SELECT p.department, AVG(p.salary) AS avgSalary '. |
|
30 | + 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '. |
|
31 | 31 | 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
32 | 32 | |
33 | 33 | $result = $this->em->createQuery($dql)->getScalarResult(); |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | |
42 | 42 | public function testUnnamedScalarResultsAreOneBased() : void |
43 | 43 | { |
44 | - $dql = 'SELECT p.department, AVG(p.salary) ' . |
|
45 | - 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
44 | + $dql = 'SELECT p.department, AVG(p.salary) '. |
|
45 | + 'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '. |
|
46 | 46 | 'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department'; |
47 | 47 | |
48 | 48 | $result = $this->em->createQuery($dql)->getScalarResult(); |
@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | |
55 | 55 | public function testOrderByResultVariableCollectionSize() : void |
56 | 56 | { |
57 | - $dql = 'SELECT p.name, size(p.friends) AS friends ' . |
|
58 | - 'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
|
59 | - 'WHERE p.friends IS NOT EMPTY ' . |
|
57 | + $dql = 'SELECT p.name, size(p.friends) AS friends '. |
|
58 | + 'FROM Doctrine\Tests\Models\Company\CompanyPerson p '. |
|
59 | + 'WHERE p.friends IS NOT EMPTY '. |
|
60 | 60 | 'ORDER BY friends DESC, p.name DESC'; |
61 | 61 | |
62 | 62 | $result = $this->em->createQuery($dql)->getScalarResult(); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | public function testIsNullAssociation() : void |
80 | 80 | { |
81 | - $dql = 'SELECT p FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
|
81 | + $dql = 'SELECT p FROM Doctrine\Tests\Models\Company\CompanyPerson p '. |
|
82 | 82 | 'WHERE p.spouse IS NULL'; |
83 | 83 | $query = $this->em->createQuery($dql); |
84 | 84 | $result = $query->getResult(); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | public function testSelectSubselect() : void |
99 | 99 | { |
100 | - $dql = 'SELECT p, (SELECT c.brand FROM Doctrine\Tests\Models\Company\CompanyCar c WHERE p.car = c) brandName ' . |
|
100 | + $dql = 'SELECT p, (SELECT c.brand FROM Doctrine\Tests\Models\Company\CompanyCar c WHERE p.car = c) brandName '. |
|
101 | 101 | 'FROM Doctrine\Tests\Models\Company\CompanyManager p'; |
102 | 102 | $query = $this->em->createQuery($dql); |
103 | 103 | $result = $query->getArrayResult(); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | public function testInSubselect() : void |
114 | 114 | { |
115 | - $dql = 'SELECT p.name FROM Doctrine\Tests\Models\Company\CompanyPerson p ' . |
|
115 | + $dql = 'SELECT p.name FROM Doctrine\Tests\Models\Company\CompanyPerson p '. |
|
116 | 116 | "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')"; |
117 | 117 | $query = $this->em->createQuery($dql); |
118 | 118 | $result = $query->getScalarResult(); |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | |
128 | 128 | public function testGroupByMultipleFields() : void |
129 | 129 | { |
130 | - $dql = 'SELECT p.department, p.name, count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p ' . |
|
130 | + $dql = 'SELECT p.department, p.name, count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p '. |
|
131 | 131 | 'GROUP BY p.department, p.name'; |
132 | 132 | $query = $this->em->createQuery($dql); |
133 | 133 | $result = $query->getResult(); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $this->em->flush(); |
96 | 96 | $this->em->clear(); |
97 | 97 | |
98 | - $query = $this->em->createQuery('select u, a from ' . CmsUser::class . ' u join u.articles a ORDER BY a.topic'); |
|
98 | + $query = $this->em->createQuery('select u, a from '.CmsUser::class.' u join u.articles a ORDER BY a.topic'); |
|
99 | 99 | $users = $query->getResult(); |
100 | 100 | |
101 | 101 | self::assertCount(1, $users); |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | $this->em->flush(); |
116 | 116 | $this->em->clear(); |
117 | 117 | |
118 | - $q = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.username = ?0'); |
|
118 | + $q = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.username = ?0'); |
|
119 | 119 | $q->setParameter(0, 'jwage'); |
120 | 120 | $user = $q->getSingleResult(); |
121 | 121 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $this->expectException(QueryException::class); |
128 | 128 | $this->expectExceptionMessage('Invalid parameter: token 2 is not defined in the query.'); |
129 | 129 | |
130 | - $q = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?1'); |
|
130 | + $q = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?1'); |
|
131 | 131 | $q->setParameter(2, 'jwage'); |
132 | 132 | $user = $q->getSingleResult(); |
133 | 133 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $this->expectException(QueryException::class); |
138 | 138 | $this->expectExceptionMessage('Too many parameters: the query defines 1 parameters and you bound 2'); |
139 | 139 | |
140 | - $q = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?1'); |
|
140 | + $q = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?1'); |
|
141 | 141 | $q->setParameter(1, 'jwage'); |
142 | 142 | $q->setParameter(2, 'jwage'); |
143 | 143 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | $this->expectException(QueryException::class); |
150 | 150 | $this->expectExceptionMessage('Too few parameters: the query defines 1 parameters but you only bound 0'); |
151 | 151 | |
152 | - $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?1') |
|
152 | + $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?1') |
|
153 | 153 | ->getSingleResult(); |
154 | 154 | } |
155 | 155 | |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | { |
158 | 158 | $this->expectException(QueryException::class); |
159 | 159 | |
160 | - $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?') |
|
160 | + $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?') |
|
161 | 161 | ->setParameter(1, 'jwage') |
162 | 162 | ->getSingleResult(); |
163 | 163 | } |
@@ -168,11 +168,11 @@ discard block |
||
168 | 168 | $parameters->add(new Parameter(1, 'jwage')); |
169 | 169 | $parameters->add(new Parameter(2, 'active')); |
170 | 170 | |
171 | - $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?1 AND u.status = ?2') |
|
171 | + $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?1 AND u.status = ?2') |
|
172 | 172 | ->setParameters($parameters) |
173 | 173 | ->getResult(); |
174 | 174 | |
175 | - $extractValue = static function (Parameter $parameter) { |
|
175 | + $extractValue = static function(Parameter $parameter) { |
|
176 | 176 | return $parameter->getValue(); |
177 | 177 | }; |
178 | 178 | |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | { |
187 | 187 | $parameters = [1 => 'jwage', 2 => 'active']; |
188 | 188 | |
189 | - $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u WHERE u.name = ?1 AND u.status = ?2') |
|
189 | + $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u WHERE u.name = ?1 AND u.status = ?2') |
|
190 | 190 | ->setParameters($parameters) |
191 | 191 | ->getResult(); |
192 | 192 | |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | $this->em->clear(); |
217 | 217 | $articleId = $article1->id; |
218 | 218 | |
219 | - $query = $this->em->createQuery('select a from ' . CmsArticle::class . ' a WHERE a.topic = ?1'); |
|
219 | + $query = $this->em->createQuery('select a from '.CmsArticle::class.' a WHERE a.topic = ?1'); |
|
220 | 220 | $articles = $query->iterate(new ArrayCollection([new Parameter(1, 'Doctrine 2')]), Query::HYDRATE_ARRAY); |
221 | 221 | |
222 | 222 | $expectedArticle = [ |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | $this->em->flush(); |
272 | 272 | $this->em->clear(); |
273 | 273 | |
274 | - $query = $this->em->createQuery('select a from ' . CmsArticle::class . ' a'); |
|
274 | + $query = $this->em->createQuery('select a from '.CmsArticle::class.' a'); |
|
275 | 275 | $articles = $query->iterate(); |
276 | 276 | |
277 | 277 | $iteratedCount = 0; |
@@ -429,8 +429,8 @@ discard block |
||
429 | 429 | { |
430 | 430 | for ($i = 0; $i < 5; $i++) { |
431 | 431 | $user = new CmsUser(); |
432 | - $user->name = 'Guilherme' . $i; |
|
433 | - $user->username = 'gblanco' . $i; |
|
432 | + $user->name = 'Guilherme'.$i; |
|
433 | + $user->username = 'gblanco'.$i; |
|
434 | 434 | $user->status = 'developer'; |
435 | 435 | $this->em->persist($user); |
436 | 436 | } |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | $this->em->flush(); |
439 | 439 | $this->em->clear(); |
440 | 440 | |
441 | - $data = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u') |
|
441 | + $data = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u') |
|
442 | 442 | ->setFirstResult(1) |
443 | 443 | ->setMaxResults(2) |
444 | 444 | ->getResult(); |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | self::assertEquals('gblanco1', $data[0]->username); |
448 | 448 | self::assertEquals('gblanco2', $data[1]->username); |
449 | 449 | |
450 | - $data = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u') |
|
450 | + $data = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u') |
|
451 | 451 | ->setFirstResult(3) |
452 | 452 | ->setMaxResults(2) |
453 | 453 | ->getResult(); |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | self::assertEquals('gblanco3', $data[0]->username); |
457 | 457 | self::assertEquals('gblanco4', $data[1]->username); |
458 | 458 | |
459 | - $data = $this->em->createQuery('SELECT u FROM ' . CmsUser::class . ' u') |
|
459 | + $data = $this->em->createQuery('SELECT u FROM '.CmsUser::class.' u') |
|
460 | 460 | ->setFirstResult(3) |
461 | 461 | ->setMaxResults(2) |
462 | 462 | ->getScalarResult(); |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | $author = new CmsUser(); |
513 | 513 | |
514 | 514 | $author->name = 'anonymous'; |
515 | - $author->username = 'anon' . $i; |
|
515 | + $author->username = 'anon'.$i; |
|
516 | 516 | $author->status = 'here'; |
517 | 517 | $article->user = $author; |
518 | 518 | |
@@ -548,13 +548,13 @@ discard block |
||
548 | 548 | $this->em->flush(); |
549 | 549 | $this->em->clear(); |
550 | 550 | |
551 | - $query = $this->em->createQuery('select u from ' . CmsUser::class . " u where u.username = 'gblanco'"); |
|
551 | + $query = $this->em->createQuery('select u from '.CmsUser::class." u where u.username = 'gblanco'"); |
|
552 | 552 | $fetchedUser = $query->getOneOrNullResult(); |
553 | 553 | |
554 | 554 | self::assertInstanceOf(CmsUser::class, $fetchedUser); |
555 | 555 | self::assertEquals('gblanco', $fetchedUser->username); |
556 | 556 | |
557 | - $query = $this->em->createQuery('select u.username from ' . CmsUser::class . " u where u.username = 'gblanco'"); |
|
557 | + $query = $this->em->createQuery('select u.username from '.CmsUser::class." u where u.username = 'gblanco'"); |
|
558 | 558 | $fetchedUsername = $query->getOneOrNullResult(Query::HYDRATE_SINGLE_SCALAR); |
559 | 559 | |
560 | 560 | self::assertEquals('gblanco', $fetchedUsername); |
@@ -1023,7 +1023,7 @@ discard block |
||
1023 | 1023 | ]; |
1024 | 1024 | |
1025 | 1025 | $proxyInstance = (new LazyLoadingGhostFactory(new Configuration())) |
1026 | - ->createProxy(ECommerceShipping::class, static function () { |
|
1026 | + ->createProxy(ECommerceShipping::class, static function() { |
|
1027 | 1027 | self::fail('Proxy is not supposed to be lazy-loaded'); |
1028 | 1028 | }); |
1029 | 1029 | |
@@ -1073,7 +1073,7 @@ discard block |
||
1073 | 1073 | ]; |
1074 | 1074 | |
1075 | 1075 | $proxyInstance = (new LazyLoadingGhostFactory(new Configuration())) |
1076 | - ->createProxy(ECommerceShipping::class, static function () { |
|
1076 | + ->createProxy(ECommerceShipping::class, static function() { |
|
1077 | 1077 | self::fail('Proxy is not supposed to be lazy-loaded'); |
1078 | 1078 | }); |
1079 | 1079 | |
@@ -1329,7 +1329,7 @@ discard block |
||
1329 | 1329 | $rsm, |
1330 | 1330 | [Query::HINT_FORCE_PARTIAL_LOAD => true] |
1331 | 1331 | ); |
1332 | - $rowNum = 0; |
|
1332 | + $rowNum = 0; |
|
1333 | 1333 | |
1334 | 1334 | while (($row = $iterableResult->next()) !== false) { |
1335 | 1335 | self::assertCount(1, $row); |
@@ -1355,7 +1355,7 @@ discard block |
||
1355 | 1355 | $rsm, |
1356 | 1356 | [Query::HINT_FORCE_PARTIAL_LOAD => true] |
1357 | 1357 | ); |
1358 | - $rowNum = 0; |
|
1358 | + $rowNum = 0; |
|
1359 | 1359 | |
1360 | 1360 | foreach ($iterableResult as $user) { |
1361 | 1361 | self::assertInstanceOf(CmsUser::class, $user); |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | public function iterate($stmt, $resultSetMapping, array $hints = []) |
110 | 110 | { |
111 | 111 | @trigger_error( |
112 | - 'Method ' . __METHOD__ . '() is deprecated and will be removed in Doctrine ORM 3.0. Use getIterable() instead.', |
|
112 | + 'Method '.__METHOD__.'() is deprecated and will be removed in Doctrine ORM 3.0. Use getIterable() instead.', |
|
113 | 113 | E_USER_DEPRECATED |
114 | 114 | ); |
115 | 115 | |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | : $value; |
343 | 343 | |
344 | 344 | if ($cacheKeyInfo['isIdentifier'] && $value !== null) { |
345 | - $id[$dqlAlias] .= '|' . $value; |
|
345 | + $id[$dqlAlias] .= '|'.$value; |
|
346 | 346 | $nonemptyComponents[$dqlAlias] = true; |
347 | 347 | } |
348 | 348 | break; |
@@ -378,10 +378,10 @@ discard block |
||
378 | 378 | |
379 | 379 | // WARNING: BC break! We know this is the desired behavior to type convert values, but this |
380 | 380 | // erroneous behavior exists since 2.0 and we're forced to keep compatibility. |
381 | - if (! isset($cacheKeyInfo['isScalar'])) { |
|
381 | + if ( ! isset($cacheKeyInfo['isScalar'])) { |
|
382 | 382 | $dqlAlias = $cacheKeyInfo['dqlAlias']; |
383 | 383 | $type = $cacheKeyInfo['type']; |
384 | - $fieldName = $dqlAlias . '_' . $fieldName; |
|
384 | + $fieldName = $dqlAlias.'_'.$fieldName; |
|
385 | 385 | $value = $type |
386 | 386 | ? $type->convertToPHPValue($value, $this->platform) |
387 | 387 | : $value; |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | private function getDiscriminatorValues(ClassMetadata $classMetadata) : array |
483 | 483 | { |
484 | 484 | $values = array_map( |
485 | - function (string $subClass) : string { |
|
485 | + function(string $subClass) : string { |
|
486 | 486 | return (string) $this->getClassMetadata($subClass)->discriminatorValue; |
487 | 487 | }, |
488 | 488 | $classMetadata->getSubClasses() |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | */ |
503 | 503 | protected function getClassMetadata($className) |
504 | 504 | { |
505 | - if (! isset($this->metadataCache[$className])) { |
|
505 | + if ( ! isset($this->metadataCache[$className])) { |
|
506 | 506 | $this->metadataCache[$className] = $this->em->getClassMetadata($className); |
507 | 507 | } |
508 | 508 |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | public function getParameter($key) |
306 | 306 | { |
307 | 307 | $filteredParameters = $this->parameters->filter( |
308 | - static function (Query\Parameter $parameter) use ($key) : bool { |
|
308 | + static function(Query\Parameter $parameter) use ($key) : bool { |
|
309 | 309 | $parameterName = $parameter->getName(); |
310 | 310 | |
311 | 311 | return $key === $parameterName || (string) $key === (string) $parameterName; |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | return $value; |
399 | 399 | } |
400 | 400 | |
401 | - if (! is_object($value)) { |
|
401 | + if ( ! is_object($value)) { |
|
402 | 402 | return $value; |
403 | 403 | } |
404 | 404 | |
@@ -729,7 +729,7 @@ discard block |
||
729 | 729 | return null; |
730 | 730 | } |
731 | 731 | |
732 | - if (! is_array($result)) { |
|
732 | + if ( ! is_array($result)) { |
|
733 | 733 | return $result; |
734 | 734 | } |
735 | 735 | |
@@ -763,7 +763,7 @@ discard block |
||
763 | 763 | throw new NoResultException(); |
764 | 764 | } |
765 | 765 | |
766 | - if (! is_array($result)) { |
|
766 | + if ( ! is_array($result)) { |
|
767 | 767 | return $result; |
768 | 768 | } |
769 | 769 | |
@@ -853,7 +853,7 @@ discard block |
||
853 | 853 | $this->setHydrationMode($hydrationMode); |
854 | 854 | } |
855 | 855 | |
856 | - if (! empty($parameters)) { |
|
856 | + if ( ! empty($parameters)) { |
|
857 | 857 | $this->setParameters($parameters); |
858 | 858 | } |
859 | 859 | |
@@ -922,11 +922,11 @@ discard block |
||
922 | 922 | $this->setHydrationMode($hydrationMode); |
923 | 923 | } |
924 | 924 | |
925 | - if (! empty($parameters)) { |
|
925 | + if ( ! empty($parameters)) { |
|
926 | 926 | $this->setParameters($parameters); |
927 | 927 | } |
928 | 928 | |
929 | - $setCacheEntry = static function () { |
|
929 | + $setCacheEntry = static function() { |
|
930 | 930 | }; |
931 | 931 | |
932 | 932 | if ($this->hydrationCacheProfile !== null) { |
@@ -940,11 +940,11 @@ discard block |
||
940 | 940 | return $result[$realCacheKey]; |
941 | 941 | } |
942 | 942 | |
943 | - if (! $result) { |
|
943 | + if ( ! $result) { |
|
944 | 944 | $result = []; |
945 | 945 | } |
946 | 946 | |
947 | - $setCacheEntry = static function ($data) use ($cache, $result, $cacheKey, $realCacheKey, $queryCacheProfile) { |
|
947 | + $setCacheEntry = static function($data) use ($cache, $result, $cacheKey, $realCacheKey, $queryCacheProfile) { |
|
948 | 948 | $result[$realCacheKey] = $data; |
949 | 949 | |
950 | 950 | $cache->save($cacheKey, $result, $queryCacheProfile->getLifetime()); |
@@ -1106,7 +1106,7 @@ discard block |
||
1106 | 1106 | { |
1107 | 1107 | $query = $this->getSQL(); |
1108 | 1108 | $hints = $this->getHints(); |
1109 | - $params = array_map(function (Parameter $parameter) { |
|
1109 | + $params = array_map(function(Parameter $parameter) { |
|
1110 | 1110 | $value = $parameter->getValue(); |
1111 | 1111 | |
1112 | 1112 | // Small optimization |
@@ -1120,7 +1120,7 @@ discard block |
||
1120 | 1120 | |
1121 | 1121 | ksort($hints); |
1122 | 1122 | |
1123 | - return sha1($query . '-' . serialize($params) . '-' . serialize($hints)); |
|
1123 | + return sha1($query.'-'.serialize($params).'-'.serialize($hints)); |
|
1124 | 1124 | } |
1125 | 1125 | |
1126 | 1126 | /** @param iterable<mixed> $subject */ |