Failed Conditions
Pull Request — master (#6392)
by Alessandro
19:58
created
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC656Test.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@  discard block
 block discarded – undo
66 66
         return $this->name;
67 67
     }
68 68
 
69
+    /**
70
+     * @param string $name
71
+     */
69 72
     public function setName($name) {
70 73
         $this->name = $name;
71 74
     }
@@ -74,6 +77,9 @@  discard block
 block discarded – undo
74 77
         return $this->type;
75 78
     }
76 79
 
80
+    /**
81
+     * @param string $type
82
+     */
77 83
     public function setType($type) {
78 84
         $this->type = $type;
79 85
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
                 $this->_em->getClassMetadata(DDC656Entity::class)
14 14
                 ]
15 15
             );
16
-        } catch(\Exception $e) {
16
+        } catch (\Exception $e) {
17 17
 
18 18
         }
19 19
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC832Test.php 2 patches
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public $version;
139 139
 
140
+    /**
141
+     * @param string $word
142
+     */
140 143
     public function __construct($word)
141 144
     {
142 145
         $this->word = $word;
@@ -166,6 +169,9 @@  discard block
 block discarded – undo
166 169
      */
167 170
     public $version;
168 171
 
172
+    /**
173
+     * @param string $name
174
+     */
169 175
     public function __construct($name)
170 176
     {
171 177
         $this->name = $name;
@@ -183,6 +189,11 @@  discard block
 block discarded – undo
183 189
     /** @Column(type="integer") */
184 190
     public $rgt;
185 191
 
192
+    /**
193
+     * @param string $name
194
+     * @param integer $lft
195
+     * @param integer $rgt
196
+     */
186 197
     public function __construct($name, $lft, $rgt)
187 198
     {
188 199
         $this->name = $name;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
                     $this->_em->getClassMetadata(DDC832Like::class),
25 25
                 ]
26 26
             );
27
-        } catch(\Exception $e) {
27
+        } catch (\Exception $e) {
28 28
         }
29 29
     }
30 30
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC881Test.php 2 patches
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -118,6 +118,9 @@  discard block
 block discarded – undo
118 118
         return $this->name;
119 119
     }
120 120
 
121
+    /**
122
+     * @param string $name
123
+     */
121 124
     public function setName($name)
122 125
     {
123 126
         $this->name = $name;
@@ -155,6 +158,9 @@  discard block
 block discarded – undo
155 158
         $this->calls = new \Doctrine\Common\Collections\ArrayCollection();
156 159
     }
157 160
 
161
+    /**
162
+     * @param integer $id
163
+     */
158 164
     public function setId($id)
159 165
     {
160 166
         $this->id = $id;
@@ -165,6 +171,9 @@  discard block
 block discarded – undo
165 171
         $this->user = $user;
166 172
     }
167 173
 
174
+    /**
175
+     * @param string $phoneNumber
176
+     */
168 177
     public function setPhoneNumber($phoneNumber)
169 178
     {
170 179
         $this->phonenumber = $phoneNumber;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,14 +80,14 @@
 block discarded – undo
80 80
         $this->_em->clear();
81 81
 
82 82
         // fetch-join that foreign-key/primary-key entity association
83
-        $dql = "SELECT c, p FROM " . DDC881PhoneCall::class . " c JOIN c.phonenumber p";
83
+        $dql = "SELECT c, p FROM ".DDC881PhoneCall::class." c JOIN c.phonenumber p";
84 84
         $calls = $this->_em->createQuery($dql)->getResult();
85 85
 
86 86
         $this->assertEquals(2, count($calls));
87 87
         $this->assertNotInstanceOf(Proxy::class, $calls[0]->getPhoneNumber());
88 88
         $this->assertNotInstanceOf(Proxy::class, $calls[1]->getPhoneNumber());
89 89
 
90
-        $dql = "SELECT p, c FROM " . DDC881PhoneNumber::class . " p JOIN p.calls c";
90
+        $dql = "SELECT p, c FROM ".DDC881PhoneNumber::class." p JOIN p.calls c";
91 91
         $numbers = $this->_em->createQuery($dql)->getResult();
92 92
 
93 93
         $this->assertEquals(2, count($numbers));
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC960Test.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -78,11 +78,17 @@
 block discarded – undo
78 78
      */
79 79
     private $name;
80 80
 
81
+    /**
82
+     * @param string $name
83
+     */
81 84
     public function __construct($name)
82 85
     {
83 86
         $this->name = $name;
84 87
     }
85 88
 
89
+    /**
90
+     * @param string $name
91
+     */
86 92
     public function setName($name)
87 93
     {
88 94
         $this->name = $name;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
                 $this->_em->getClassMetadata(DDC960Child::class)
17 17
                 ]
18 18
             );
19
-        } catch(\Exception $e) {
19
+        } catch (\Exception $e) {
20 20
 
21 21
         }
22 22
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket69.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@
 block discarded – undo
240 240
 
241 241
     /**
242 242
      *
243
-     * @return Phrase
243
+     * @return Lemma
244 244
      */
245 245
     public function getParent() {
246 246
         return $this->parent;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         $this->assertInstanceOf(Lemma::class, $lemma);
87 87
         $relations = $lemma->getRelations();
88 88
 
89
-        foreach($relations as $relation) {
89
+        foreach ($relations as $relation) {
90 90
             $this->assertInstanceOf(Relation::class, $relation);
91 91
             $this->assertTrue($relation->getType()->getType() != '');
92 92
         }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php 2 patches
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -339,6 +339,9 @@  discard block
 block discarded – undo
339 339
     /** @Embedded(class = "DDC93Timestamps") */
340 340
     public $timestamps;
341 341
 
342
+    /**
343
+     * @param string $name
344
+     */
342 345
     public function __construct($name = null, DDC93Address $address = null)
343 346
     {
344 347
         $this->name = $name;
@@ -403,6 +406,9 @@  discard block
 block discarded – undo
403 406
      */
404 407
     public $name;
405 408
 
409
+    /**
410
+     * @param string $name
411
+     */
406 412
     public function __construct($name = null)
407 413
     {
408 414
         $this->name = $name;
@@ -431,6 +437,11 @@  discard block
 block discarded – undo
431 437
     /** @Embedded(class = "DDC93Country") */
432 438
     public $country;
433 439
 
440
+    /**
441
+     * @param string $street
442
+     * @param string $zip
443
+     * @param string $city
444
+     */
434 445
     public function __construct($street = null, $zip = null, $city = null, DDC93Country $country = null)
435 446
     {
436 447
         $this->street = $street;
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                 $this->_em->getClassMetadata(DDC3027Dog::class),
28 28
                 ]
29 29
             );
30
-        } catch(\Exception $e) {
30
+        } catch (\Exception $e) {
31 31
         }
32 32
     }
33 33
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $this->assertEquals('United States of America', $person->address->country->name);
83 83
 
84 84
         // 4. check deleting works
85
-        $personId = $person->id;;
85
+        $personId = $person->id; ;
86 86
         $this->_em->remove($person);
87 87
         $this->_em->flush();
88 88
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $this->_em->flush();
107 107
         $this->_em->clear();
108 108
 
109
-        $dql = "SELECT p FROM " . __NAMESPACE__ . "\DDC93Person p";
109
+        $dql = "SELECT p FROM ".__NAMESPACE__."\DDC93Person p";
110 110
         $persons = $this->_em->createQuery($dql)->getResult();
111 111
 
112 112
         $this->assertCount(3, $persons);
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
             $this->assertEquals('United States of America', $person->address->country->name);
120 120
         }
121 121
 
122
-        $dql = "SELECT p FROM " . __NAMESPACE__ . "\DDC93Person p";
122
+        $dql = "SELECT p FROM ".__NAMESPACE__."\DDC93Person p";
123 123
         $persons = $this->_em->createQuery($dql)->getArrayResult();
124 124
 
125 125
         foreach ($persons as $person) {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $this->_em->flush($person);
145 145
 
146 146
         // SELECT
147
-        $selectDql = "SELECT p FROM " . __NAMESPACE__ ."\\DDC93Person p WHERE p.address.city = :city AND p.address.country.name = :country";
147
+        $selectDql = "SELECT p FROM ".__NAMESPACE__."\\DDC93Person p WHERE p.address.city = :city AND p.address.country.name = :country";
148 148
         $loadedPerson = $this->_em->createQuery($selectDql)
149 149
             ->setParameter('city', 'Karlsruhe')
150 150
             ->setParameter('country', 'Germany')
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         );
160 160
 
161 161
         // UPDATE
162
-        $updateDql = "UPDATE " . __NAMESPACE__ . "\\DDC93Person p SET p.address.street = :street, p.address.country.name = :country WHERE p.address.city = :city";
162
+        $updateDql = "UPDATE ".__NAMESPACE__."\\DDC93Person p SET p.address.street = :street, p.address.country.name = :country WHERE p.address.city = :city";
163 163
         $this->_em->createQuery($updateDql)
164 164
             ->setParameter('street', 'Boo')
165 165
             ->setParameter('country', 'DE')
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         $this->assertEquals('DE', $person->address->country->name);
172 172
 
173 173
         // DELETE
174
-        $this->_em->createQuery("DELETE " . __NAMESPACE__ . "\\DDC93Person p WHERE p.address.city = :city AND p.address.country.name = :country")
174
+        $this->_em->createQuery("DELETE ".__NAMESPACE__."\\DDC93Person p WHERE p.address.city = :city AND p.address.country.name = :country")
175 175
             ->setParameter('city', 'Karlsruhe')
176 176
             ->setParameter('country', 'DE')
177 177
             ->execute();
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $this->_em->clear();
189 189
 
190 190
         // Prove that the entity was persisted correctly.
191
-        $dql = "SELECT p FROM " . __NAMESPACE__ ."\\DDC93Person p WHERE p.name = :name";
191
+        $dql = "SELECT p FROM ".__NAMESPACE__."\\DDC93Person p WHERE p.name = :name";
192 192
 
193 193
         $person = $this->_em->createQuery($dql)
194 194
             ->setParameter('name', 'Karl')
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         // Clear the EM and prove that the embeddable can be the subject of a partial query.
203 203
         $this->_em->clear();
204 204
 
205
-        $dql = "SELECT PARTIAL p.{id,address.city} FROM " . __NAMESPACE__ ."\\DDC93Person p WHERE p.name = :name";
205
+        $dql = "SELECT PARTIAL p.{id,address.city} FROM ".__NAMESPACE__."\\DDC93Person p WHERE p.name = :name";
206 206
 
207 207
         $person = $this->_em->createQuery($dql)
208 208
             ->setParameter('name', 'Karl')
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         // Clear the EM and prove that the embeddable can be the subject of a partial query regardless of attributes positions.
219 219
         $this->_em->clear();
220 220
 
221
-        $dql = "SELECT PARTIAL p.{address.city, id} FROM " . __NAMESPACE__ ."\\DDC93Person p WHERE p.name = :name";
221
+        $dql = "SELECT PARTIAL p.{address.city, id} FROM ".__NAMESPACE__."\\DDC93Person p WHERE p.name = :name";
222 222
 
223 223
         $person = $this->_em->createQuery($dql)
224 224
             ->setParameter('name', 'Karl')
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
         $this->expectException(QueryException::class);
238 238
         $this->expectExceptionMessage('no field or association named address.asdfasdf');
239 239
 
240
-        $this->_em->createQuery("SELECT p FROM " . __NAMESPACE__ . "\\DDC93Person p WHERE p.address.asdfasdf IS NULL")
240
+        $this->_em->createQuery("SELECT p FROM ".__NAMESPACE__."\\DDC93Person p WHERE p.address.asdfasdf IS NULL")
241 241
             ->execute();
242 242
     }
243 243
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         $this->expectException(QueryException::class);
247 247
         $this->expectExceptionMessage("no mapped field named 'address.asdfasdf'");
248 248
 
249
-        $this->_em->createQuery("SELECT PARTIAL p.{id,address.asdfasdf} FROM " . __NAMESPACE__ . "\\DDC93Person p")
249
+        $this->_em->createQuery("SELECT PARTIAL p.{id,address.asdfasdf} FROM ".__NAMESPACE__."\\DDC93Person p")
250 250
             ->execute();
251 251
     }
252 252
 
@@ -308,15 +308,15 @@  discard block
 block discarded – undo
308 308
         $this->expectException(MappingException::class);
309 309
         $this->expectExceptionMessage(
310 310
             sprintf(
311
-                'Infinite nesting detected for embedded property %s::nested. ' .
311
+                'Infinite nesting detected for embedded property %s::nested. '.
312 312
                 'You cannot embed an embeddable from the same type inside an embeddable.',
313
-                __NAMESPACE__ . '\\' . $declaredEmbeddableClassName
313
+                __NAMESPACE__.'\\'.$declaredEmbeddableClassName
314 314
             )
315 315
         );
316 316
 
317 317
         $this->_schemaTool->createSchema(
318 318
             [
319
-            $this->_em->getClassMetadata(__NAMESPACE__ . '\\' . $embeddableClassName),
319
+            $this->_em->getClassMetadata(__NAMESPACE__.'\\'.$embeddableClassName),
320 320
             ]
321 321
         );
322 322
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Performance/SecondLevelCacheTest.php 2 patches
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -124,6 +124,9 @@  discard block
 block discarded – undo
124 124
         $this->assertEquals(503, $this->countQuery($em));
125 125
     }
126 126
 
127
+    /**
128
+     * @param string $label
129
+     */
127 130
     private function queryEntity(EntityManagerInterface $em, $label)
128 131
     {
129 132
         $times        = 100;
@@ -155,6 +158,9 @@  discard block
 block discarded – undo
155 158
         printf("\n%s\n", str_repeat('-', 50));
156 159
     }
157 160
 
161
+    /**
162
+     * @param string $label
163
+     */
158 164
     public function findEntityOneToMany(EntityManagerInterface $em, $label)
159 165
     {
160 166
         $times        = 50;
@@ -214,6 +220,9 @@  discard block
 block discarded – undo
214 220
         printf("\n%s\n", str_repeat('-', 50));
215 221
     }
216 222
 
223
+    /**
224
+     * @param string $label
225
+     */
217 226
     private function findEntity(EntityManagerInterface $em, $label)
218 227
     {
219 228
         $times        = 10;
@@ -249,6 +258,9 @@  discard block
 block discarded – undo
249 258
         printf("\n%s\n", str_repeat('-', 50));
250 259
     }
251 260
 
261
+    /**
262
+     * @param string $label
263
+     */
252 264
     private function findAllEntity(EntityManagerInterface $em, $label)
253 265
     {
254 266
         $times        = 100;
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $size         = 500;
131 131
         $startPersist = microtime(true);
132 132
 
133
-        echo PHP_EOL . $label;
133
+        echo PHP_EOL.$label;
134 134
 
135 135
         for ($i = 0; $i < $size; $i++) {
136 136
             $em->persist(new Country("Country $i"));
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         $startPersist = microtime(true);
165 165
         $country      = new Country("Country");
166 166
 
167
-        echo PHP_EOL . $label;
167
+        echo PHP_EOL.$label;
168 168
 
169 169
         $em->persist($country);
170 170
         $em->flush();
@@ -194,9 +194,9 @@  discard block
 block discarded – undo
194 194
         $em->flush();
195 195
         $em->clear();
196 196
 
197
-        printf("\n[%s] persist %s states and %s cities", number_format( microtime(true) - $startPersist, 6), count($states), count($cities));
197
+        printf("\n[%s] persist %s states and %s cities", number_format(microtime(true) - $startPersist, 6), count($states), count($cities));
198 198
 
199
-        $startFind  = microtime(true);
199
+        $startFind = microtime(true);
200 200
 
201 201
         for ($i = 0; $i < $times; $i++) {
202 202
 
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         $countries    = [];
222 222
         $startPersist = microtime(true);
223 223
 
224
-        echo PHP_EOL . $label;
224
+        echo PHP_EOL.$label;
225 225
 
226 226
         for ($i = 0; $i < $size; $i++) {
227 227
             $country = new Country("Country $i");
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 
237 237
         printf("\n[%s] persist %s countries", number_format(microtime(true) - $startPersist, 6), $size);
238 238
 
239
-        $startFind  = microtime(true);
239
+        $startFind = microtime(true);
240 240
 
241 241
         for ($i = 0; $i <= $times; $i++) {
242 242
             foreach ($countries as $country) {
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
         $startPersist = microtime(true);
257 257
         $rep          = $em->getRepository(Country::class);
258 258
 
259
-        echo PHP_EOL . $label;
259
+        echo PHP_EOL.$label;
260 260
 
261 261
         for ($i = 0; $i < $size; $i++) {
262 262
             $em->persist(new Country("Country $i"));
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 
268 268
         printf("\n[%s] persist %s countries", number_format(microtime(true) - $startPersist, 6), $size);
269 269
 
270
-        $startFind  = microtime(true);
270
+        $startFind = microtime(true);
271 271
 
272 272
         for ($i = 0; $i <= $times; $i++) {
273 273
             $list = $rep->findAll();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -43,6 +43,10 @@
 block discarded – undo
43 43
         $this->_em = $this->_getTestEntityManager();
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $dqlToBeTested
48
+     * @param string $sqlToBeConfirmed
49
+     */
46 50
     public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed)
47 51
     {
48 52
         try {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php 4 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
         $this->_em = $this->_getTestEntityManager();
18 18
     }
19 19
 
20
+    /**
21
+     * @param string $dql
22
+     */
20 23
     public function assertValidDQL($dql, $debug = false)
21 24
     {
22 25
         try {
@@ -30,6 +33,9 @@  discard block
 block discarded – undo
30 33
         }
31 34
     }
32 35
 
36
+    /**
37
+     * @param string $dql
38
+     */
33 39
     public function assertInvalidDQL($dql, $debug = false)
34 40
     {
35 41
         try {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Doctrine\Tests\ORM\Query;
4 4
 
5 5
 use Doctrine\ORM\EntityManagerInterface;
6
-use Doctrine\ORM\Query,
7
-    Doctrine\ORM\Query\QueryException;
6
+use Doctrine\ORM\Query;
7
+use Doctrine\ORM\Query\QueryException;
8 8
 use Doctrine\Tests\Mocks\MockTreeWalker;
9 9
 use Doctrine\Tests\OrmTestCase;
10 10
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         $query->setDQL($dql);
57 57
 
58 58
         foreach ($hints as $key => $value) {
59
-        	$query->setHint($key, $value);
59
+            $query->setHint($key, $value);
60 60
         }
61 61
 
62 62
         $parser = new Query\Parser($query);
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $this->addToAssertionCount(1);
28 28
         } catch (QueryException $e) {
29 29
             if ($debug) {
30
-                echo $e->getTraceAsString() . PHP_EOL;
30
+                echo $e->getTraceAsString().PHP_EOL;
31 31
             }
32 32
 
33 33
             $this->fail($e->getMessage());
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $this->fail('No syntax errors were detected, when syntax errors were expected');
43 43
         } catch (QueryException $e) {
44 44
             if ($debug) {
45
-                echo $e->getMessage() . PHP_EOL;
46
-                echo $e->getTraceAsString() . PHP_EOL;
45
+                echo $e->getMessage().PHP_EOL;
46
+                echo $e->getTraceAsString().PHP_EOL;
47 47
             }
48 48
             $this->addToAssertionCount(1);
49 49
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             ['SELECT foo: FROM Doctrine\Tests\Models\CMS\CmsUser foo:'],
113 113
 
114 114
             /* Checks for invalid AbstractSchemaName */
115
-            ['SELECT u FROM UnknownClass u'],  // unknown
115
+            ['SELECT u FROM UnknownClass u'], // unknown
116 116
             ['SELECT u FROM Unknown\Class u'], // unknown with namespace
117 117
             ['SELECT u FROM \Unknown\Class u'], // unknown, leading backslash
118 118
             ['SELECT u FROM Unknown\\\\Class u'], // unknown, syntactically bogus (duplicate \\)
@@ -585,7 +585,7 @@  discard block
 block discarded – undo
585 585
      */
586 586
     public function testDQLKeywordInJoinIsAllowed()
587 587
     {
588
-        $this->assertValidDQL('SELECT u FROM ' . __NAMESPACE__ . '\DQLKeywordsModelUser u JOIN u.group g');
588
+        $this->assertValidDQL('SELECT u FROM '.__NAMESPACE__.'\DQLKeywordsModelUser u JOIN u.group g');
589 589
     }
590 590
 
591 591
     /**
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
      */
594 594
     public function testDQLKeywordInConditionIsAllowed()
595 595
     {
596
-        $this->assertValidDQL('SELECT g FROM ' . __NAMESPACE__ . '\DQLKeywordsModelGroup g WHERE g.from=0');
596
+        $this->assertValidDQL('SELECT g FROM '.__NAMESPACE__.'\DQLKeywordsModelGroup g WHERE g.from=0');
597 597
     }
598 598
 
599 599
     /* The exception is currently thrown in the SQLWalker, not earlier.
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
      */
699 699
     public function testNewLiteralExpression()
700 700
     {
701
-        $this->assertValidDQL("SELECT new " . __NAMESPACE__ . "\\DummyStruct(u.id, 'foo', 1, true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
701
+        $this->assertValidDQL("SELECT new ".__NAMESPACE__."\\DummyStruct(u.id, 'foo', 1, true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
702 702
     }
703 703
 
704 704
     /**
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
      */
707 707
     public function testNewLiteralWithSubselectExpression()
708 708
     {
709
-        $this->assertValidDQL("SELECT new " . __NAMESPACE__ . "\\DummyStruct(u.id, 'foo', (SELECT 1 FROM Doctrine\Tests\Models\CMS\CmsUser su), true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
709
+        $this->assertValidDQL("SELECT new ".__NAMESPACE__."\\DummyStruct(u.id, 'foo', (SELECT 1 FROM Doctrine\Tests\Models\CMS\CmsUser su), true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
710 710
     }
711 711
 }
712 712
 
Please login to merge, or discard this patch.