Failed Conditions
Pull Request — master (#6593)
by Thomas
16:12
created
lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -83,6 +83,7 @@
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * {@inheritDoc}
86
+     * @param string $value
86 87
      */
87 88
     public function setValue($object, $value = null)
88 89
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/AdvancedAssociationTest.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 
183 183
 	/**
184 184
      *
185
-     * @param kateglo\application\models\Type $type
185
+     * @param Type $type
186 186
      * @return void
187 187
      */
188 188
 	public function addType(Type $type){
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 
195 195
     /**
196 196
      *
197
-     * @param kateglo\application\models\Type $type
197
+     * @param Type $type
198 198
      * @return void
199 199
      */
200 200
     public function removeType(Type $type)
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
 
305 305
 	/**
306 306
 	 *
307
-	 * @param kateglo\application\models\Lemma $lemma
307
+	 * @param Lemma $lemma
308 308
 	 * @return void
309 309
 	 */
310 310
 	public function addLemma(Lemma $lemma)
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 
318 318
 	/**
319 319
 	 *
320
-	 * @param kateglo\application\models\Lemma $lemma
320
+	 * @param Lemma $lemma
321 321
 	 * @return void
322 322
 	 */
323 323
 	public function removeLEmma(Lemma $lemma)
Please login to merge, or discard this patch.
Indentation   +170 added lines, -170 removed lines patch added patch discarded remove patch
@@ -131,65 +131,65 @@  discard block
 block discarded – undo
131 131
  */
132 132
 class Lemma {
133 133
 
134
-	const CLASS_NAME = __CLASS__;
135
-
136
-	/**
137
-	 * @var int
138
-	 * @Id
139
-	 * @Column(type="integer", name="lemma_id")
140
-	 * @GeneratedValue(strategy="AUTO")
141
-	 */
142
-	private $id;
143
-
144
-	/**
145
-	 *
146
-	 * @var string
147
-	 * @Column(type="string", name="lemma_name", unique=true, length=255)
148
-	 */
149
-	private $lemma;
150
-
151
-	/**
152
-	 * @var kateglo\application\utilities\collections\ArrayCollection
153
-	 * @ManyToMany(targetEntity="Type", mappedBy="lemmas", cascade={"persist"})
154
-	 */
155
-	private $types;
156
-
157
-	public function __construct() {
158
-		$this->types = new ArrayCollection();
159
-	}
160
-
161
-
162
-	/**
163
-	 *
164
-	 * @return int
165
-	 */
166
-	public function getId(){
167
-		return $this->id;
168
-	}
169
-
170
-	/**
171
-	 *
172
-	 * @param string $lemma
173
-	 * @return void
174
-	 */
175
-	public function setLemma($lemma){
176
-		$this->lemma = $lemma;
177
-	}
178
-
179
-	/**
180
-	 *
181
-	 * @return string
182
-	 */
183
-	public function getLemma(){
184
-		return $this->lemma;
185
-	}
186
-
187
-	/**
134
+    const CLASS_NAME = __CLASS__;
135
+
136
+    /**
137
+     * @var int
138
+     * @Id
139
+     * @Column(type="integer", name="lemma_id")
140
+     * @GeneratedValue(strategy="AUTO")
141
+     */
142
+    private $id;
143
+
144
+    /**
145
+     *
146
+     * @var string
147
+     * @Column(type="string", name="lemma_name", unique=true, length=255)
148
+     */
149
+    private $lemma;
150
+
151
+    /**
152
+     * @var kateglo\application\utilities\collections\ArrayCollection
153
+     * @ManyToMany(targetEntity="Type", mappedBy="lemmas", cascade={"persist"})
154
+     */
155
+    private $types;
156
+
157
+    public function __construct() {
158
+        $this->types = new ArrayCollection();
159
+    }
160
+
161
+
162
+    /**
163
+     *
164
+     * @return int
165
+     */
166
+    public function getId(){
167
+        return $this->id;
168
+    }
169
+
170
+    /**
171
+     *
172
+     * @param string $lemma
173
+     * @return void
174
+     */
175
+    public function setLemma($lemma){
176
+        $this->lemma = $lemma;
177
+    }
178
+
179
+    /**
180
+     *
181
+     * @return string
182
+     */
183
+    public function getLemma(){
184
+        return $this->lemma;
185
+    }
186
+
187
+    /**
188 188
      *
189 189
      * @param kateglo\application\models\Type $type
190 190
      * @return void
191 191
      */
192
-	public function addType(Type $type){
192
+    public function addType(Type $type){
193 193
         if (!$this->types->contains($type)) {
194 194
             $this->types[] = $type;
195 195
             $type->addLemma($this);
@@ -225,121 +225,121 @@  discard block
 block discarded – undo
225 225
  */
226 226
 class Type {
227 227
 
228
-	const CLASS_NAME = __CLASS__;
229
-
230
-	/**
231
-	 *
232
-	 * @var int
233
-	 * @Id
234
-	 * @Column(type="integer", name="type_id")
235
-	 * @GeneratedValue(strategy="AUTO")
236
-	 */
237
-	private $id;
238
-
239
-	/**
240
-	 *
241
-	 * @var string
242
-	 * @Column(type="string", name="type_name", unique=true)
243
-	 */
244
-	private $type;
245
-
246
-	/**
247
-	 *
248
-	 * @var string
249
-	 * @Column(type="string", name="type_abbreviation", unique=true)
250
-	 */
251
-	private $abbreviation;
252
-
253
-	/**
254
-	 * @var kateglo\application\helpers\collections\ArrayCollection
255
-	 * @ManyToMany(targetEntity="Lemma")
256
-	 * @JoinTable(name="lemma_type",
257
-	 * 		joinColumns={@JoinColumn(name="type_id", referencedColumnName="type_id")},
258
-	 * 		inverseJoinColumns={@JoinColumn(name="lemma_id", referencedColumnName="lemma_id")}
259
-	 * )
260
-	 */
261
-	private $lemmas;
262
-
263
-	public function __construct(){
264
-		$this->lemmas = new ArrayCollection();
265
-	}
266
-
267
-	/**
268
-	 *
269
-	 * @return int
270
-	 */
271
-	public function getId(){
272
-		return $this->id;
273
-	}
274
-
275
-	/**
276
-	 *
277
-	 * @param string $type
278
-	 * @return void
279
-	 */
280
-	public function setType($type){
281
-		$this->type = $type;
282
-	}
283
-
284
-	/**
285
-	 *
286
-	 * @return string
287
-	 */
288
-	public function getType(){
289
-		return $this->type;
290
-	}
291
-
292
-	/**
293
-	 *
294
-	 * @param string $abbreviation
295
-	 * @return void
296
-	 */
297
-	public function setAbbreviation($abbreviation){
298
-		$this->abbreviation = $abbreviation;
299
-	}
300
-
301
-	/**
302
-	 *
303
-	 * @return string
304
-	 */
305
-	public function getAbbreviation(){
306
-		return $this->abbreviation;
307
-	}
308
-
309
-	/**
310
-	 *
311
-	 * @param kateglo\application\models\Lemma $lemma
312
-	 * @return void
313
-	 */
314
-	public function addLemma(Lemma $lemma)
315
-	{
316
-		if (!$this->lemmas->contains($lemma)) {
317
-			$this->lemmas[] = $lemma;
318
-			$lemma->addType($this);
319
-		}
320
-	}
321
-
322
-	/**
323
-	 *
324
-	 * @param kateglo\application\models\Lemma $lemma
325
-	 * @return void
326
-	 */
327
-	public function removeLEmma(Lemma $lemma)
328
-	{
329
-		$removed = $this->lemmas->removeElement($lemma);
330
-		if ($removed !== null) {
331
-			$removed->removeType($this);
332
-		}
333
-	}
334
-
335
-	/**
336
-	 *
337
-	 * @return kateglo\application\helpers\collections\ArrayCollection
338
-	 */
339
-	public function getCategories()
340
-	{
341
-		return $this->categories;
342
-	}
228
+    const CLASS_NAME = __CLASS__;
229
+
230
+    /**
231
+     *
232
+     * @var int
233
+     * @Id
234
+     * @Column(type="integer", name="type_id")
235
+     * @GeneratedValue(strategy="AUTO")
236
+     */
237
+    private $id;
238
+
239
+    /**
240
+     *
241
+     * @var string
242
+     * @Column(type="string", name="type_name", unique=true)
243
+     */
244
+    private $type;
245
+
246
+    /**
247
+     *
248
+     * @var string
249
+     * @Column(type="string", name="type_abbreviation", unique=true)
250
+     */
251
+    private $abbreviation;
252
+
253
+    /**
254
+     * @var kateglo\application\helpers\collections\ArrayCollection
255
+     * @ManyToMany(targetEntity="Lemma")
256
+     * @JoinTable(name="lemma_type",
257
+     * 		joinColumns={@JoinColumn(name="type_id", referencedColumnName="type_id")},
258
+     * 		inverseJoinColumns={@JoinColumn(name="lemma_id", referencedColumnName="lemma_id")}
259
+     * )
260
+     */
261
+    private $lemmas;
262
+
263
+    public function __construct(){
264
+        $this->lemmas = new ArrayCollection();
265
+    }
266
+
267
+    /**
268
+     *
269
+     * @return int
270
+     */
271
+    public function getId(){
272
+        return $this->id;
273
+    }
274
+
275
+    /**
276
+     *
277
+     * @param string $type
278
+     * @return void
279
+     */
280
+    public function setType($type){
281
+        $this->type = $type;
282
+    }
283
+
284
+    /**
285
+     *
286
+     * @return string
287
+     */
288
+    public function getType(){
289
+        return $this->type;
290
+    }
291
+
292
+    /**
293
+     *
294
+     * @param string $abbreviation
295
+     * @return void
296
+     */
297
+    public function setAbbreviation($abbreviation){
298
+        $this->abbreviation = $abbreviation;
299
+    }
300
+
301
+    /**
302
+     *
303
+     * @return string
304
+     */
305
+    public function getAbbreviation(){
306
+        return $this->abbreviation;
307
+    }
308
+
309
+    /**
310
+     *
311
+     * @param kateglo\application\models\Lemma $lemma
312
+     * @return void
313
+     */
314
+    public function addLemma(Lemma $lemma)
315
+    {
316
+        if (!$this->lemmas->contains($lemma)) {
317
+            $this->lemmas[] = $lemma;
318
+            $lemma->addType($this);
319
+        }
320
+    }
321
+
322
+    /**
323
+     *
324
+     * @param kateglo\application\models\Lemma $lemma
325
+     * @return void
326
+     */
327
+    public function removeLEmma(Lemma $lemma)
328
+    {
329
+        $removed = $this->lemmas->removeElement($lemma);
330
+        if ($removed !== null) {
331
+            $removed->removeType($this);
332
+        }
333
+    }
334
+
335
+    /**
336
+     *
337
+     * @return kateglo\application\helpers\collections\ArrayCollection
338
+     */
339
+    public function getCategories()
340
+    {
341
+        return $this->categories;
342
+    }
343 343
 
344 344
 }
345 345
 
Please login to merge, or discard this patch.
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 *
164 164
 	 * @return int
165 165
 	 */
166
-	public function getId(){
166
+	public function getId() {
167 167
 		return $this->id;
168 168
 	}
169 169
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 	 * @param string $lemma
173 173
 	 * @return void
174 174
 	 */
175
-	public function setLemma($lemma){
175
+	public function setLemma($lemma) {
176 176
 		$this->lemma = $lemma;
177 177
 	}
178 178
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	 *
181 181
 	 * @return string
182 182
 	 */
183
-	public function getLemma(){
183
+	public function getLemma() {
184 184
 		return $this->lemma;
185 185
 	}
186 186
 
@@ -189,8 +189,8 @@  discard block
 block discarded – undo
189 189
      * @param kateglo\application\models\Type $type
190 190
      * @return void
191 191
      */
192
-	public function addType(Type $type){
193
-        if (!$this->types->contains($type)) {
192
+	public function addType(Type $type) {
193
+        if ( ! $this->types->contains($type)) {
194 194
             $this->types[] = $type;
195 195
             $type->addLemma($this);
196 196
         }
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	 */
261 261
 	private $lemmas;
262 262
 
263
-	public function __construct(){
263
+	public function __construct() {
264 264
 		$this->lemmas = new ArrayCollection();
265 265
 	}
266 266
 
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 	 *
269 269
 	 * @return int
270 270
 	 */
271
-	public function getId(){
271
+	public function getId() {
272 272
 		return $this->id;
273 273
 	}
274 274
 
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	 * @param string $type
278 278
 	 * @return void
279 279
 	 */
280
-	public function setType($type){
280
+	public function setType($type) {
281 281
 		$this->type = $type;
282 282
 	}
283 283
 
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 	 *
286 286
 	 * @return string
287 287
 	 */
288
-	public function getType(){
288
+	public function getType() {
289 289
 		return $this->type;
290 290
 	}
291 291
 
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 	 * @param string $abbreviation
295 295
 	 * @return void
296 296
 	 */
297
-	public function setAbbreviation($abbreviation){
297
+	public function setAbbreviation($abbreviation) {
298 298
 		$this->abbreviation = $abbreviation;
299 299
 	}
300 300
 
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 	 *
303 303
 	 * @return string
304 304
 	 */
305
-	public function getAbbreviation(){
305
+	public function getAbbreviation() {
306 306
 		return $this->abbreviation;
307 307
 	}
308 308
 
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
 	 */
314 314
 	public function addLemma(Lemma $lemma)
315 315
 	{
316
-		if (!$this->lemmas->contains($lemma)) {
316
+		if ( ! $this->lemmas->contains($lemma)) {
317 317
 			$this->lemmas[] = $lemma;
318 318
 			$lemma->addType($this);
319 319
 		}
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
      * @param Definition $definition
385 385
      * @return void
386 386
      */
387
-    public function addDefinition(Definition $definition){
387
+    public function addDefinition(Definition $definition) {
388 388
         $this->definitions[] = $definition;
389 389
         $definition->setPhrase($this);
390 390
     }
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     /**
393 393
      * @return int
394 394
      */
395
-    public function getId(){
395
+    public function getId() {
396 396
         return $this->id;
397 397
     }
398 398
 
@@ -400,14 +400,14 @@  discard block
 block discarded – undo
400 400
      * @param string $phrase
401 401
      * @return void
402 402
      */
403
-    public function setPhrase($phrase){
403
+    public function setPhrase($phrase) {
404 404
         $this->phrase = $phrase;
405 405
     }
406 406
 
407 407
     /**
408 408
      * @return string
409 409
      */
410
-    public function getPhrase(){
410
+    public function getPhrase() {
411 411
         return $this->phrase;
412 412
     }
413 413
 
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
      * @param PhraseType $type
417 417
      * @return void
418 418
      */
419
-    public function setType(PhraseType $type){
419
+    public function setType(PhraseType $type) {
420 420
         $this->type = $type;
421 421
     }
422 422
 
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
      *
425 425
      * @return PhraseType
426 426
      */
427
-    public function getType(){
427
+    public function getType() {
428 428
         return $this->type;
429 429
     }
430 430
 
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
      *
433 433
      * @return ArrayCollection
434 434
      */
435
-    public function getDefinitions(){
435
+    public function getDefinitions() {
436 436
         return $this->definitions;
437 437
     }
438 438
 }
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
     /**
475 475
      * @return int
476 476
      */
477
-    public function getId(){
477
+    public function getId() {
478 478
         return $this->id;
479 479
     }
480 480
 
@@ -482,14 +482,14 @@  discard block
 block discarded – undo
482 482
      * @param string $type
483 483
      * @return void
484 484
      */
485
-    public function setType($type){
485
+    public function setType($type) {
486 486
         $this->type = $type;
487 487
     }
488 488
 
489 489
     /**
490 490
      * @return string
491 491
      */
492
-    public function getType(){
492
+    public function getType() {
493 493
         return $this->type;
494 494
     }
495 495
 
@@ -497,14 +497,14 @@  discard block
 block discarded – undo
497 497
      * @param string $abbreviation
498 498
      * @return void
499 499
      */
500
-    public function setAbbreviation($abbreviation){
500
+    public function setAbbreviation($abbreviation) {
501 501
         $this->abbreviation = $abbreviation;
502 502
     }
503 503
 
504 504
     /**
505 505
      * @return string
506 506
      */
507
-    public function getAbbreviation(){
507
+    public function getAbbreviation() {
508 508
         return $this->abbreviation;
509 509
     }
510 510
 
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
      * @param ArrayCollection $phrases
513 513
      * @return void
514 514
      */
515
-    public function setPhrases($phrases){
515
+    public function setPhrases($phrases) {
516 516
         $this->phrases = $phrases;
517 517
     }
518 518
 
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
      *
521 521
      * @return ArrayCollection
522 522
      */
523
-    public function getPhrases(){
523
+    public function getPhrases() {
524 524
         return $this->phrases;
525 525
     }
526 526
 
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
     /**
556 556
      * @return int
557 557
      */
558
-    public function getId(){
558
+    public function getId() {
559 559
         return $this->id;
560 560
     }
561 561
 
@@ -563,14 +563,14 @@  discard block
 block discarded – undo
563 563
      * @param Phrase $phrase
564 564
      * @return void
565 565
      */
566
-    public function setPhrase(Phrase $phrase){
566
+    public function setPhrase(Phrase $phrase) {
567 567
         $this->phrase = $phrase;
568 568
     }
569 569
 
570 570
     /**
571 571
      * @return Phrase
572 572
      */
573
-    public function getPhrase(){
573
+    public function getPhrase() {
574 574
         return $this->phrase;
575 575
     }
576 576
 
@@ -587,14 +587,14 @@  discard block
 block discarded – undo
587 587
      * @param string $definition
588 588
      * @return void
589 589
      */
590
-    public function setDefinition($definition){
590
+    public function setDefinition($definition) {
591 591
         $this->definition = $definition;
592 592
     }
593 593
 
594 594
     /**
595 595
      * @return string
596 596
      */
597
-    public function getDefinition(){
597
+    public function getDefinition() {
598 598
         return $this->definition;
599 599
     }
600 600
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
  */
46 46
 class ConvertDoctrine1SchemaTest extends OrmTestCase
47 47
 {
48
+    /**
49
+     * @param YamlDriver $metadataDriver
50
+     */
48 51
     protected function _createEntityManager($metadataDriver)
49 52
     {
50 53
         $driverMock = new DriverMock();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 use Doctrine\ORM\Mapping\Driver\YamlDriver;
26 26
 use Doctrine\ORM\Tools\Export\ClassMetadataExporter;
27 27
 use Doctrine\ORM\Tools\ConvertDoctrine1Schema;
28
-use Doctrine\Tests\Mocks\MetadataDriverMock;
29 28
 use Doctrine\Tests\Mocks\EntityManagerMock;
30 29
 use Doctrine\Tests\Mocks\ConnectionMock;
31 30
 use Doctrine\Tests\Mocks\DriverMock;
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $driverMock = new DriverMock();
32 32
         $config = new Configuration();
33
-        $config->setProxyDir(__DIR__ . '/../../Proxies');
33
+        $config->setProxyDir(__DIR__.'/../../Proxies');
34 34
         $config->setProxyNamespace('Doctrine\Tests\Proxies');
35 35
         $eventManager = new EventManager();
36 36
         $conn = new ConnectionMock([], $driverMock, $config, $eventManager);
@@ -46,17 +46,17 @@  discard block
 block discarded – undo
46 46
         }
47 47
 
48 48
         $cme = new ClassMetadataExporter();
49
-        $converter = new ConvertDoctrine1Schema(__DIR__ . '/doctrine1schema');
49
+        $converter = new ConvertDoctrine1Schema(__DIR__.'/doctrine1schema');
50 50
 
51
-        $exporter = $cme->getExporter('yml', __DIR__ . '/convert');
51
+        $exporter = $cme->getExporter('yml', __DIR__.'/convert');
52 52
         $exporter->setOverwriteExistingFiles(true);
53 53
         $exporter->setMetadata($converter->getMetadata());
54 54
         $exporter->export();
55 55
 
56
-        $this->assertTrue(file_exists(__DIR__ . '/convert/User.dcm.yml'));
57
-        $this->assertTrue(file_exists(__DIR__ . '/convert/Profile.dcm.yml'));
56
+        $this->assertTrue(file_exists(__DIR__.'/convert/User.dcm.yml'));
57
+        $this->assertTrue(file_exists(__DIR__.'/convert/Profile.dcm.yml'));
58 58
 
59
-        $metadataDriver = new YamlDriver(__DIR__ . '/convert');
59
+        $metadataDriver = new YamlDriver(__DIR__.'/convert');
60 60
         $em = $this->_createEntityManager($metadataDriver);
61 61
         $cmf = new DisconnectedClassMetadataFactory();
62 62
         $cmf->setEntityManager($em);
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function tearDown()
83 83
     {
84
-        @unlink(__DIR__ . '/convert/User.dcm.yml');
85
-        @unlink(__DIR__ . '/convert/Profile.dcm.yml');
86
-        @rmdir(__DIR__ . '/convert');
84
+        @unlink(__DIR__.'/convert/User.dcm.yml');
85
+        @unlink(__DIR__.'/convert/Profile.dcm.yml');
86
+        @rmdir(__DIR__.'/convert');
87 87
     }
88 88
 }
Please login to merge, or discard this patch.
tests/Doctrine/Performance/Mock/NonProxyLoadingEntityManager.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\EntityManagerInterface;
6 6
 use Doctrine\ORM\Proxy\ProxyFactory;
7
-use Doctrine\ORM\Query;
8 7
 use Doctrine\ORM\Query\ResultSetMapping;
9
-use Doctrine\Tests\ORM\Performance\MockUnitOfWork;
10 8
 
11 9
 /**
12 10
  * An entity manager mock that prevents lazy-loading of proxies
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1080Test.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     }
128 128
 
129 129
     /**
130
-     * @param field_type $fooTitle
130
+     * @param string $fooTitle
131 131
      */
132 132
     public function setFooTitle($fooTitle)
133 133
     {
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     }
206 206
 
207 207
     /**
208
-     * @param field_type $barTitle
208
+     * @param string $barTitle
209 209
      */
210 210
     public function setBarTitle($barTitle)
211 211
     {
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -301,14 +301,14 @@
 block discarded – undo
301 301
      */
302 302
     private function resolveMagicCall($method, $by, array $arguments)
303 303
     {
304
-        if (! $arguments) {
305
-            throw ORMException::findByRequiresParameter($method . $by);
304
+        if ( ! $arguments) {
305
+            throw ORMException::findByRequiresParameter($method.$by);
306 306
         }
307 307
 
308 308
         $fieldName = lcfirst(Inflector::classify($by));
309 309
 
310
-        if (! ($this->_class->hasField($fieldName) || $this->_class->hasAssociation($fieldName))) {
311
-            throw ORMException::invalidMagicCall($this->_entityName, $fieldName, $method . $by);
310
+        if ( ! ($this->_class->hasField($fieldName) || $this->_class->hasAssociation($fieldName))) {
311
+            throw ORMException::invalidMagicCall($this->_entityName, $fieldName, $method.$by);
312 312
         }
313 313
 
314 314
         return $this->$method([$fieldName => $arguments[0]], ...array_slice($arguments, 1));
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php 3 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param \Doctrine\ORM\EntityManager $entityClassName
37 36
      * @return \Doctrine\ORM\Mapping\ClassMetadataFactory
38 37
      */
39 38
     protected function createClassMetadataFactory(EntityManager $em = null)
Please login to merge, or discard this patch.
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
         $this->assertEquals($guestGroups['isCascadeMerge'], $adminGroups['isCascadeMerge']);
740 740
         $this->assertEquals($guestGroups['isCascadeDetach'], $adminGroups['isCascadeDetach']);
741 741
 
742
-         // assert not override attributes
742
+            // assert not override attributes
743 743
         $this->assertEquals('ddc964_users_groups', $guestGroups['joinTable']['name']);
744 744
         $this->assertEquals('user_id', $guestGroups['joinTable']['joinColumns'][0]['name']);
745 745
         $this->assertEquals('group_id', $guestGroups['joinTable']['inverseJoinColumns'][0]['name']);
@@ -1166,8 +1166,8 @@  discard block
 block discarded – undo
1166 1166
         $metadata->setInheritanceType(ClassMetadataInfo::INHERITANCE_TYPE_NONE);
1167 1167
         $metadata->setPrimaryTable(
1168 1168
             [
1169
-           'name' => 'cms_users',
1170
-           'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']],
1169
+            'name' => 'cms_users',
1170
+            'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']],
1171 1171
             ]
1172 1172
         );
1173 1173
         $metadata->setChangeTrackingPolicy(ClassMetadataInfo::CHANGETRACKING_DEFERRED_IMPLICIT);
@@ -1176,30 +1176,30 @@  discard block
 block discarded – undo
1176 1176
         $metadata->addLifecycleCallback('doStuffOnPostPersist', 'postPersist');
1177 1177
         $metadata->mapField(
1178 1178
             [
1179
-           'id' => true,
1180
-           'fieldName' => 'id',
1181
-           'type' => 'integer',
1182
-           'columnName' => 'id',
1183
-           'options' => ['foo' => 'bar', 'unsigned' => false],
1179
+            'id' => true,
1180
+            'fieldName' => 'id',
1181
+            'type' => 'integer',
1182
+            'columnName' => 'id',
1183
+            'options' => ['foo' => 'bar', 'unsigned' => false],
1184 1184
             ]
1185 1185
         );
1186 1186
         $metadata->mapField(
1187 1187
             [
1188
-           'fieldName' => 'name',
1189
-           'type' => 'string',
1190
-           'length' => 50,
1191
-           'unique' => true,
1192
-           'nullable' => true,
1193
-           'columnName' => 'name',
1194
-           'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false],
1188
+            'fieldName' => 'name',
1189
+            'type' => 'string',
1190
+            'length' => 50,
1191
+            'unique' => true,
1192
+            'nullable' => true,
1193
+            'columnName' => 'name',
1194
+            'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false],
1195 1195
             ]
1196 1196
         );
1197 1197
         $metadata->mapField(
1198 1198
             [
1199
-           'fieldName' => 'email',
1200
-           'type' => 'string',
1201
-           'columnName' => 'user_email',
1202
-           'columnDefinition' => 'CHAR(32) NOT NULL',
1199
+            'fieldName' => 'email',
1200
+            'type' => 'string',
1201
+            'columnName' => 'user_email',
1202
+            'columnDefinition' => 'CHAR(32) NOT NULL',
1203 1203
             ]
1204 1204
         );
1205 1205
         $mapping = ['fieldName' => 'version', 'type' => 'integer'];
@@ -1208,60 +1208,60 @@  discard block
 block discarded – undo
1208 1208
         $metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_AUTO);
1209 1209
         $metadata->mapOneToOne(
1210 1210
             [
1211
-           'fieldName' => 'address',
1212
-           'targetEntity' => Address::class,
1213
-           'cascade' =>
1214
-           [
1215
-           0 => 'remove',
1216
-           ],
1217
-           'mappedBy' => NULL,
1218
-           'inversedBy' => 'user',
1219
-           'joinColumns' =>
1220
-           [
1221
-           0 =>
1222
-           [
1211
+            'fieldName' => 'address',
1212
+            'targetEntity' => Address::class,
1213
+            'cascade' =>
1214
+            [
1215
+            0 => 'remove',
1216
+            ],
1217
+            'mappedBy' => NULL,
1218
+            'inversedBy' => 'user',
1219
+            'joinColumns' =>
1220
+            [
1221
+            0 =>
1222
+            [
1223 1223
             'name' => 'address_id',
1224 1224
             'referencedColumnName' => 'id',
1225 1225
             'onDelete' => 'CASCADE',
1226
-           ],
1227
-           ],
1228
-           'orphanRemoval' => false,
1226
+            ],
1227
+            ],
1228
+            'orphanRemoval' => false,
1229 1229
             ]
1230 1230
         );
1231 1231
         $metadata->mapOneToMany(
1232 1232
             [
1233
-           'fieldName' => 'phonenumbers',
1234
-           'targetEntity' => Phonenumber::class,
1235
-           'cascade' =>
1236
-           [
1237
-           1 => 'persist',
1238
-           ],
1239
-           'mappedBy' => 'user',
1240
-           'orphanRemoval' => true,
1241
-           'orderBy' =>
1242
-           [
1243
-           'number' => 'ASC',
1244
-           ],
1233
+            'fieldName' => 'phonenumbers',
1234
+            'targetEntity' => Phonenumber::class,
1235
+            'cascade' =>
1236
+            [
1237
+            1 => 'persist',
1238
+            ],
1239
+            'mappedBy' => 'user',
1240
+            'orphanRemoval' => true,
1241
+            'orderBy' =>
1242
+            [
1243
+            'number' => 'ASC',
1244
+            ],
1245 1245
             ]
1246 1246
         );
1247 1247
         $metadata->mapManyToMany(
1248 1248
             [
1249
-           'fieldName' => 'groups',
1250
-           'targetEntity' => Group::class,
1251
-           'cascade' =>
1252
-           [
1253
-           0 => 'remove',
1254
-           1 => 'persist',
1255
-           2 => 'refresh',
1256
-           3 => 'merge',
1257
-           4 => 'detach',
1258
-           ],
1259
-           'mappedBy' => NULL,
1260
-           'joinTable' =>
1261
-           [
1262
-           'name' => 'cms_users_groups',
1263
-           'joinColumns' =>
1264
-           [
1249
+            'fieldName' => 'groups',
1250
+            'targetEntity' => Group::class,
1251
+            'cascade' =>
1252
+            [
1253
+            0 => 'remove',
1254
+            1 => 'persist',
1255
+            2 => 'refresh',
1256
+            3 => 'merge',
1257
+            4 => 'detach',
1258
+            ],
1259
+            'mappedBy' => NULL,
1260
+            'joinTable' =>
1261
+            [
1262
+            'name' => 'cms_users_groups',
1263
+            'joinColumns' =>
1264
+            [
1265 1265
             0 =>
1266 1266
             [
1267 1267
             'name' => 'user_id',
@@ -1269,18 +1269,18 @@  discard block
 block discarded – undo
1269 1269
             'unique' => false,
1270 1270
             'nullable' => false,
1271 1271
             ],
1272
-           ],
1273
-           'inverseJoinColumns' =>
1274
-           [
1272
+            ],
1273
+            'inverseJoinColumns' =>
1274
+            [
1275 1275
             0 =>
1276 1276
             [
1277 1277
             'name' => 'group_id',
1278 1278
             'referencedColumnName' => 'id',
1279 1279
             'columnDefinition' => 'INT NULL',
1280 1280
             ],
1281
-           ],
1282
-           ],
1283
-           'orderBy' => NULL,
1281
+            ],
1282
+            ],
1283
+            'orderBy' => NULL,
1284 1284
             ]
1285 1285
         );
1286 1286
         $metadata->table['uniqueConstraints'] = [
@@ -1391,9 +1391,9 @@  discard block
 block discarded – undo
1391 1391
     {
1392 1392
         $metadata->mapField(
1393 1393
             [
1394
-           'id'                 => true,
1395
-           'fieldName'          => 'id',
1396
-           'columnDefinition'   => 'INT unsigned NOT NULL',
1394
+            'id'                 => true,
1395
+            'fieldName'          => 'id',
1396
+            'columnDefinition'   => 'INT unsigned NOT NULL',
1397 1397
             ]
1398 1398
         );
1399 1399
 
@@ -1422,16 +1422,16 @@  discard block
 block discarded – undo
1422 1422
      * @Column(type="integer")
1423 1423
      * @GeneratedValue(strategy="NONE")
1424 1424
      **/
1425
-   public $id;
1425
+    public $id;
1426 1426
 
1427
-   public static function loadMetadata(ClassMetadataInfo $metadata)
1427
+    public static function loadMetadata(ClassMetadataInfo $metadata)
1428 1428
     {
1429
-         $metadata->mapField(
1430
-             [
1431
-           'id'                 => true,
1432
-           'fieldName'          => 'id',
1433
-             ]
1434
-         );
1429
+            $metadata->mapField(
1430
+                [
1431
+            'id'                 => true,
1432
+            'fieldName'          => 'id',
1433
+                ]
1434
+            );
1435 1435
 
1436 1436
         $metadata->setDiscriminatorColumn(
1437 1437
             [
Please login to merge, or discard this patch.
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -605,13 +605,13 @@  discard block
 block discarded – undo
605 605
 
606 606
         $findByIdQuery = $class->getNamedNativeQuery('find-by-id');
607 607
         $this->assertEquals('find-by-id', $findByIdQuery['name']);
608
-        $this->assertEquals(CmsAddress::class,$findByIdQuery['resultClass']);
609
-        $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?',  $findByIdQuery['query']);
608
+        $this->assertEquals(CmsAddress::class, $findByIdQuery['resultClass']);
609
+        $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?', $findByIdQuery['query']);
610 610
 
611 611
         $countQuery = $class->getNamedNativeQuery('count');
612 612
         $this->assertEquals('count', $countQuery['name']);
613 613
         $this->assertEquals('mapping-count', $countQuery['resultSetMapping']);
614
-        $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses',  $countQuery['query']);
614
+        $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses', $countQuery['query']);
615 615
 
616 616
         // result set mapping
617 617
         $this->assertCount(3, $class->sqlResultSetMappings);
@@ -622,9 +622,9 @@  discard block
 block discarded – undo
622 622
         $findAllMapping = $class->getSqlResultSetMapping('mapping-find-all');
623 623
         $this->assertEquals('mapping-find-all', $findAllMapping['name']);
624 624
         $this->assertEquals(CmsAddress::class, $findAllMapping['entities'][0]['entityClass']);
625
-        $this->assertEquals(['name'=>'id','column'=>'id'], $findAllMapping['entities'][0]['fields'][0]);
626
-        $this->assertEquals(['name'=>'city','column'=>'city'], $findAllMapping['entities'][0]['fields'][1]);
627
-        $this->assertEquals(['name'=>'country','column'=>'country'], $findAllMapping['entities'][0]['fields'][2]);
625
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $findAllMapping['entities'][0]['fields'][0]);
626
+        $this->assertEquals(['name'=>'city', 'column'=>'city'], $findAllMapping['entities'][0]['fields'][1]);
627
+        $this->assertEquals(['name'=>'country', 'column'=>'country'], $findAllMapping['entities'][0]['fields'][2]);
628 628
 
629 629
         $withoutFieldsMapping = $class->getSqlResultSetMapping('mapping-without-fields');
630 630
         $this->assertEquals('mapping-without-fields', $withoutFieldsMapping['name']);
@@ -650,62 +650,62 @@  discard block
 block discarded – undo
650 650
         $this->assertCount(4, $userMetadata->getSqlResultSetMappings());
651 651
 
652 652
         $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedAddress');
653
-        $this->assertEquals([],$mapping['columns']);
653
+        $this->assertEquals([], $mapping['columns']);
654 654
         $this->assertEquals('mappingJoinedAddress', $mapping['name']);
655 655
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
656
-        $this->assertEquals(['name'=>'id','column'=>'id'],                     $mapping['entities'][0]['fields'][0]);
657
-        $this->assertEquals(['name'=>'name','column'=>'name'],                 $mapping['entities'][0]['fields'][1]);
658
-        $this->assertEquals(['name'=>'status','column'=>'status'],             $mapping['entities'][0]['fields'][2]);
659
-        $this->assertEquals(['name'=>'address.zip','column'=>'zip'],           $mapping['entities'][0]['fields'][3]);
660
-        $this->assertEquals(['name'=>'address.city','column'=>'city'],         $mapping['entities'][0]['fields'][4]);
661
-        $this->assertEquals(['name'=>'address.country','column'=>'country'],   $mapping['entities'][0]['fields'][5]);
662
-        $this->assertEquals(['name'=>'address.id','column'=>'a_id'],           $mapping['entities'][0]['fields'][6]);
663
-        $this->assertEquals($userMetadata->name,                                    $mapping['entities'][0]['entityClass']);
656
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
657
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
658
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
659
+        $this->assertEquals(['name'=>'address.zip', 'column'=>'zip'], $mapping['entities'][0]['fields'][3]);
660
+        $this->assertEquals(['name'=>'address.city', 'column'=>'city'], $mapping['entities'][0]['fields'][4]);
661
+        $this->assertEquals(['name'=>'address.country', 'column'=>'country'], $mapping['entities'][0]['fields'][5]);
662
+        $this->assertEquals(['name'=>'address.id', 'column'=>'a_id'], $mapping['entities'][0]['fields'][6]);
663
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
664 664
 
665 665
 
666 666
         $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedPhonenumber');
667
-        $this->assertEquals([],$mapping['columns']);
667
+        $this->assertEquals([], $mapping['columns']);
668 668
         $this->assertEquals('mappingJoinedPhonenumber', $mapping['name']);
669 669
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
670
-        $this->assertEquals(['name'=>'id','column'=>'id'],                             $mapping['entities'][0]['fields'][0]);
671
-        $this->assertEquals(['name'=>'name','column'=>'name'],                         $mapping['entities'][0]['fields'][1]);
672
-        $this->assertEquals(['name'=>'status','column'=>'status'],                     $mapping['entities'][0]['fields'][2]);
673
-        $this->assertEquals(['name'=>'phonenumbers.phonenumber','column'=>'number'],   $mapping['entities'][0]['fields'][3]);
674
-        $this->assertEquals($userMetadata->name,                                            $mapping['entities'][0]['entityClass']);
670
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
671
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
672
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
673
+        $this->assertEquals(['name'=>'phonenumbers.phonenumber', 'column'=>'number'], $mapping['entities'][0]['fields'][3]);
674
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
675 675
 
676 676
         $mapping = $userMetadata->getSqlResultSetMapping('mappingUserPhonenumberCount');
677
-        $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]);
677
+        $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]);
678 678
         $this->assertEquals('mappingUserPhonenumberCount', $mapping['name']);
679 679
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
680
-        $this->assertEquals(['name'=>'id','column'=>'id'],         $mapping['entities'][0]['fields'][0]);
681
-        $this->assertEquals(['name'=>'name','column'=>'name'],     $mapping['entities'][0]['fields'][1]);
682
-        $this->assertEquals(['name'=>'status','column'=>'status'], $mapping['entities'][0]['fields'][2]);
683
-        $this->assertEquals($userMetadata->name,                        $mapping['entities'][0]['entityClass']);
680
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
681
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
682
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
683
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
684 684
 
685 685
         $mapping = $userMetadata->getSqlResultSetMapping('mappingMultipleJoinsEntityResults');
686
-        $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]);
686
+        $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]);
687 687
         $this->assertEquals('mappingMultipleJoinsEntityResults', $mapping['name']);
688 688
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
689
-        $this->assertEquals(['name'=>'id','column'=>'u_id'],           $mapping['entities'][0]['fields'][0]);
690
-        $this->assertEquals(['name'=>'name','column'=>'u_name'],       $mapping['entities'][0]['fields'][1]);
691
-        $this->assertEquals(['name'=>'status','column'=>'u_status'],   $mapping['entities'][0]['fields'][2]);
692
-        $this->assertEquals($userMetadata->name,                            $mapping['entities'][0]['entityClass']);
689
+        $this->assertEquals(['name'=>'id', 'column'=>'u_id'], $mapping['entities'][0]['fields'][0]);
690
+        $this->assertEquals(['name'=>'name', 'column'=>'u_name'], $mapping['entities'][0]['fields'][1]);
691
+        $this->assertEquals(['name'=>'status', 'column'=>'u_status'], $mapping['entities'][0]['fields'][2]);
692
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
693 693
         $this->assertNull($mapping['entities'][1]['discriminatorColumn']);
694
-        $this->assertEquals(['name'=>'id','column'=>'a_id'],           $mapping['entities'][1]['fields'][0]);
695
-        $this->assertEquals(['name'=>'zip','column'=>'a_zip'],         $mapping['entities'][1]['fields'][1]);
696
-        $this->assertEquals(['name'=>'country','column'=>'a_country'], $mapping['entities'][1]['fields'][2]);
697
-        $this->assertEquals(CmsAddress::class,         $mapping['entities'][1]['entityClass']);
694
+        $this->assertEquals(['name'=>'id', 'column'=>'a_id'], $mapping['entities'][1]['fields'][0]);
695
+        $this->assertEquals(['name'=>'zip', 'column'=>'a_zip'], $mapping['entities'][1]['fields'][1]);
696
+        $this->assertEquals(['name'=>'country', 'column'=>'a_country'], $mapping['entities'][1]['fields'][2]);
697
+        $this->assertEquals(CmsAddress::class, $mapping['entities'][1]['entityClass']);
698 698
 
699 699
         //person asserts
700 700
         $this->assertCount(1, $personMetadata->getSqlResultSetMappings());
701 701
 
702 702
         $mapping = $personMetadata->getSqlResultSetMapping('mappingFetchAll');
703
-        $this->assertEquals([],$mapping['columns']);
703
+        $this->assertEquals([], $mapping['columns']);
704 704
         $this->assertEquals('mappingFetchAll', $mapping['name']);
705
-        $this->assertEquals('discriminator',                            $mapping['entities'][0]['discriminatorColumn']);
706
-        $this->assertEquals(['name'=>'id','column'=>'id'],         $mapping['entities'][0]['fields'][0]);
707
-        $this->assertEquals(['name'=>'name','column'=>'name'],     $mapping['entities'][0]['fields'][1]);
708
-        $this->assertEquals($personMetadata->name,                      $mapping['entities'][0]['entityClass']);
705
+        $this->assertEquals('discriminator', $mapping['entities'][0]['discriminatorColumn']);
706
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
707
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
708
+        $this->assertEquals($personMetadata->name, $mapping['entities'][0]['entityClass']);
709 709
     }
710 710
 
711 711
     /*
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
 
747 747
         $this->assertEquals(['user_id'=>'id'], $guestGroups['relationToSourceKeyColumns']);
748 748
         $this->assertEquals(['group_id'=>'id'], $guestGroups['relationToTargetKeyColumns']);
749
-        $this->assertEquals(['user_id','group_id'], $guestGroups['joinTableColumns']);
749
+        $this->assertEquals(['user_id', 'group_id'], $guestGroups['joinTableColumns']);
750 750
 
751 751
 
752 752
         $this->assertEquals('ddc964_users_admingroups', $adminGroups['joinTable']['name']);
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
 
756 756
         $this->assertEquals(['adminuser_id'=>'id'], $adminGroups['relationToSourceKeyColumns']);
757 757
         $this->assertEquals(['admingroup_id'=>'id'], $adminGroups['relationToTargetKeyColumns']);
758
-        $this->assertEquals(['adminuser_id','admingroup_id'], $adminGroups['joinTableColumns']);
758
+        $this->assertEquals(['adminuser_id', 'admingroup_id'], $adminGroups['joinTableColumns']);
759 759
 
760 760
 
761 761
         // assert address association mappings
@@ -833,8 +833,8 @@  discard block
 block discarded – undo
833 833
         $this->assertTrue($adminMetadata->fieldMappings['id']['id']);
834 834
         $this->assertEquals('id', $adminMetadata->fieldMappings['id']['fieldName']);
835 835
         $this->assertEquals('user_id', $adminMetadata->fieldMappings['id']['columnName']);
836
-        $this->assertEquals(['user_id'=>'id','user_name'=>'name'], $adminMetadata->fieldNames);
837
-        $this->assertEquals(['id'=>'user_id','name'=>'user_name'], $adminMetadata->columnNames);
836
+        $this->assertEquals(['user_id'=>'id', 'user_name'=>'name'], $adminMetadata->fieldNames);
837
+        $this->assertEquals(['id'=>'user_id', 'name'=>'user_name'], $adminMetadata->columnNames);
838 838
         $this->assertEquals(150, $adminMetadata->fieldMappings['id']['length']);
839 839
 
840 840
 
@@ -848,8 +848,8 @@  discard block
 block discarded – undo
848 848
         $this->assertTrue($guestMetadata->fieldMappings['id']['id']);
849 849
         $this->assertEquals('guest_id', $guestMetadata->fieldMappings['id']['columnName']);
850 850
         $this->assertEquals('id', $guestMetadata->fieldMappings['id']['fieldName']);
851
-        $this->assertEquals(['guest_id'=>'id','guest_name'=>'name'], $guestMetadata->fieldNames);
852
-        $this->assertEquals(['id'=>'guest_id','name'=>'guest_name'], $guestMetadata->columnNames);
851
+        $this->assertEquals(['guest_id'=>'id', 'guest_name'=>'name'], $guestMetadata->fieldNames);
852
+        $this->assertEquals(['id'=>'guest_id', 'name'=>'guest_name'], $guestMetadata->columnNames);
853 853
         $this->assertEquals(140, $guestMetadata->fieldMappings['id']['length']);
854 854
 
855 855
         $this->assertEquals('name', $guestMetadata->fieldMappings['name']['fieldName']);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -224,8 +224,8 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function transactional($func)
226 226
     {
227
-        if (!is_callable($func)) {
228
-            throw new \InvalidArgumentException('Expected argument of type "callable", got "' . gettype($func) . '"');
227
+        if ( ! is_callable($func)) {
228
+            throw new \InvalidArgumentException('Expected argument of type "callable", got "'.gettype($func).'"');
229 229
         }
230 230
 
231 231
         $this->conn->beginTransaction();
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
      */
754 754
     public function isOpen()
755 755
     {
756
-        return (!$this->closed);
756
+        return ( ! $this->closed);
757 757
     }
758 758
 
759 759
     /**
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
                 sprintf(
865 865
                     'Invalid $connection argument of type %s given%s.',
866 866
                     is_object($connection) ? get_class($connection) : gettype($connection),
867
-                    is_object($connection) ? '' : ': "' . $connection . '"'
867
+                    is_object($connection) ? '' : ': "'.$connection.'"'
868 868
                 )
869 869
             );
870 870
         }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php 3 patches
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
     /**
668 668
      * Gets the ReflectionProperties of the mapped class.
669 669
      *
670
-     * @return array An array of ReflectionProperty instances.
670
+     * @return \ReflectionProperty[] An array of ReflectionProperty instances.
671 671
      */
672 672
     public function getReflectionProperties()
673 673
     {
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
      *      - reflClass (ReflectionClass)
806 806
      *      - reflFields (ReflectionProperty array)
807 807
      *
808
-     * @return array The names of all the fields that should be serialized.
808
+     * @return string[] The names of all the fields that should be serialized.
809 809
      */
810 810
     public function __sleep()
811 811
     {
@@ -1825,7 +1825,7 @@  discard block
 block discarded – undo
1825 1825
      * Sets the mapped identifier/primary key fields of this class.
1826 1826
      * Mainly used by the ClassMetadataFactory to assign inherited identifiers.
1827 1827
      *
1828
-     * @param array $identifier
1828
+     * @param string[] $identifier
1829 1829
      *
1830 1830
      * @return void
1831 1831
      */
@@ -1854,7 +1854,7 @@  discard block
 block discarded – undo
1854 1854
     /**
1855 1855
      * Gets an array containing all the column names.
1856 1856
      *
1857
-     * @param array|null $fieldNames
1857
+     * @param string[] $fieldNames
1858 1858
      *
1859 1859
      * @return array
1860 1860
      */
@@ -2012,7 +2012,7 @@  discard block
 block discarded – undo
2012 2012
      *
2013 2013
      * @param string $fieldName
2014 2014
      *
2015
-     * @return \Doctrine\DBAL\Types\Type|string|null
2015
+     * @return string
2016 2016
      *
2017 2017
      * @todo 3.0 Remove this. PersisterHelper should fix it somehow
2018 2018
      */
@@ -2072,7 +2072,7 @@  discard block
 block discarded – undo
2072 2072
     /**
2073 2073
      * Sets the mapped subclasses of this class.
2074 2074
      *
2075
-     * @param array $subclasses The names of all mapped subclasses.
2075
+     * @param string[] $subclasses The names of all mapped subclasses.
2076 2076
      *
2077 2077
      * @return void
2078 2078
      */
@@ -2088,7 +2088,7 @@  discard block
 block discarded – undo
2088 2088
      * Assumes that the class names in the passed array are in the order:
2089 2089
      * directParent -> directParentParent -> directParentParentParent ... -> root.
2090 2090
      *
2091
-     * @param array $classNames
2091
+     * @param string[] $classNames
2092 2092
      *
2093 2093
      * @return void
2094 2094
      */
@@ -2625,7 +2625,7 @@  discard block
 block discarded – undo
2625 2625
      * @deprecated Deprecated since version 2.4 in favor of \Doctrine\ORM\Event\ListenersInvoker
2626 2626
      *
2627 2627
      * @param string $lifecycleEvent The lifecycle event.
2628
-     * @param object $entity         The Entity on which the event occurred.
2628
+     * @param \Doctrine\Tests\ORM\Functional\Ticket\DDC1707Child $entity         The Entity on which the event occurred.
2629 2629
      *
2630 2630
      * @return void
2631 2631
      */
Please login to merge, or discard this patch.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
     public function getSingleIdReflectionProperty()
697 697
     {
698 698
         if ($this->isIdentifierComposite) {
699
-            throw new BadMethodCallException("Class " . $this->name . " has a composite identifier.");
699
+            throw new BadMethodCallException("Class ".$this->name." has a composite identifier.");
700 700
         }
701 701
 
702 702
         return $this->reflFields[$this->identifier[0]];
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
      */
792 792
     public function __toString()
793 793
     {
794
-        return __CLASS__ . '@' . spl_object_hash($this);
794
+        return __CLASS__.'@'.spl_object_hash($this);
795 795
     }
796 796
 
797 797
     /**
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
     public function validateAssociations()
1026 1026
     {
1027 1027
         foreach ($this->associationMappings as $mapping) {
1028
-            if ( ! ClassLoader::classExists($mapping['targetEntity']) ) {
1028
+            if ( ! ClassLoader::classExists($mapping['targetEntity'])) {
1029 1029
                 throw MappingException::invalidTargetEntityClass($mapping['targetEntity'], $this->name, $mapping['fieldName']);
1030 1030
             }
1031 1031
         }
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
         }
1104 1104
 
1105 1105
         if ( ! isset($cache['region'])) {
1106
-            $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)) . '__' . $fieldName;
1106
+            $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)).'__'.$fieldName;
1107 1107
         }
1108 1108
 
1109 1109
         return $cache;
@@ -1383,7 +1383,7 @@  discard block
 block discarded – undo
1383 1383
     protected function _validateAndCompleteFieldMapping(array &$mapping)
1384 1384
     {
1385 1385
         // Check mandatory fields
1386
-        if ( ! isset($mapping['fieldName']) || !$mapping['fieldName']) {
1386
+        if ( ! isset($mapping['fieldName']) || ! $mapping['fieldName']) {
1387 1387
             throw MappingException::missingFieldName($this->name);
1388 1388
         }
1389 1389
 
@@ -1496,14 +1496,14 @@  discard block
 block discarded – undo
1496 1496
                 $this->isIdentifierComposite = true;
1497 1497
             }
1498 1498
 
1499
-            if ($this->cache && !isset($mapping['cache'])) {
1499
+            if ($this->cache && ! isset($mapping['cache'])) {
1500 1500
                 throw CacheException::nonCacheableEntityAssociation($this->name, $mapping['fieldName']);
1501 1501
             }
1502 1502
         }
1503 1503
 
1504 1504
         // Mandatory attributes for both sides
1505 1505
         // Mandatory: fieldName, targetEntity
1506
-        if ( ! isset($mapping['fieldName']) || !$mapping['fieldName']) {
1506
+        if ( ! isset($mapping['fieldName']) || ! $mapping['fieldName']) {
1507 1507
             throw MappingException::missingFieldName($this->name);
1508 1508
         }
1509 1509
 
@@ -1627,7 +1627,7 @@  discard block
 block discarded – undo
1627 1627
                     throw new RuntimeException("ClassMetadataInfo::setTable() has to be called before defining a one to one relationship.");
1628 1628
                 }
1629 1629
 
1630
-                $this->table['uniqueConstraints'][$mapping['fieldName'] . "_uniq"] = [
1630
+                $this->table['uniqueConstraints'][$mapping['fieldName']."_uniq"] = [
1631 1631
                     'columns' => $uniqueConstraintColumns
1632 1632
                 ];
1633 1633
             }
@@ -1642,7 +1642,7 @@  discard block
 block discarded – undo
1642 1642
             unset($mapping['unique']);
1643 1643
         }
1644 1644
 
1645
-        if (isset($mapping['id']) && $mapping['id'] === true && !$mapping['isOwningSide']) {
1645
+        if (isset($mapping['id']) && $mapping['id'] === true && ! $mapping['isOwningSide']) {
1646 1646
             throw MappingException::illegalInverseIdentifierAssociation($this->name, $mapping['fieldName']);
1647 1647
         }
1648 1648
 
@@ -1696,7 +1696,7 @@  discard block
 block discarded – undo
1696 1696
             }
1697 1697
 
1698 1698
             $selfReferencingEntityWithoutJoinColumns = $mapping['sourceEntity'] == $mapping['targetEntity']
1699
-                && (! (isset($mapping['joinTable']['joinColumns']) || isset($mapping['joinTable']['inverseJoinColumns'])));
1699
+                && ( ! (isset($mapping['joinTable']['joinColumns']) || isset($mapping['joinTable']['inverseJoinColumns'])));
1700 1700
 
1701 1701
             if ( ! isset($mapping['joinTable']['joinColumns'])) {
1702 1702
                 $mapping['joinTable']['joinColumns'] = [
@@ -1885,7 +1885,7 @@  discard block
 block discarded – undo
1885 1885
 
1886 1886
             // Association defined as Id field
1887 1887
             $joinColumns      = $this->associationMappings[$idProperty]['joinColumns'];
1888
-            $assocColumnNames = array_map(function ($joinColumn) { return $joinColumn['name']; }, $joinColumns);
1888
+            $assocColumnNames = array_map(function($joinColumn) { return $joinColumn['name']; }, $joinColumns);
1889 1889
 
1890 1890
             $columnNames = array_merge($columnNames, $assocColumnNames);
1891 1891
         }
@@ -2066,7 +2066,7 @@  discard block
 block discarded – undo
2066 2066
     public function getTemporaryIdTableName()
2067 2067
     {
2068 2068
         // replace dots with underscores because PostgreSQL creates temporary tables in a special schema
2069
-        return str_replace('.', '_', $this->getTableName() . '_id_tmp');
2069
+        return str_replace('.', '_', $this->getTableName().'_id_tmp');
2070 2070
     }
2071 2071
 
2072 2072
     /**
@@ -2395,7 +2395,7 @@  discard block
 block discarded – undo
2395 2395
      */
2396 2396
     public function addNamedQuery(array $queryMapping)
2397 2397
     {
2398
-        if (!isset($queryMapping['name'])) {
2398
+        if ( ! isset($queryMapping['name'])) {
2399 2399
             throw MappingException::nameIsMandatoryForQueryMapping($this->name);
2400 2400
         }
2401 2401
 
@@ -2403,7 +2403,7 @@  discard block
 block discarded – undo
2403 2403
             throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']);
2404 2404
         }
2405 2405
 
2406
-        if (!isset($queryMapping['query'])) {
2406
+        if ( ! isset($queryMapping['query'])) {
2407 2407
             throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']);
2408 2408
         }
2409 2409
 
@@ -2430,7 +2430,7 @@  discard block
 block discarded – undo
2430 2430
      */
2431 2431
     public function addNamedNativeQuery(array $queryMapping)
2432 2432
     {
2433
-        if (!isset($queryMapping['name'])) {
2433
+        if ( ! isset($queryMapping['name'])) {
2434 2434
             throw MappingException::nameIsMandatoryForQueryMapping($this->name);
2435 2435
         }
2436 2436
 
@@ -2438,11 +2438,11 @@  discard block
 block discarded – undo
2438 2438
             throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']);
2439 2439
         }
2440 2440
 
2441
-        if (!isset($queryMapping['query'])) {
2441
+        if ( ! isset($queryMapping['query'])) {
2442 2442
             throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']);
2443 2443
         }
2444 2444
 
2445
-        if (!isset($queryMapping['resultClass']) && !isset($queryMapping['resultSetMapping'])) {
2445
+        if ( ! isset($queryMapping['resultClass']) && ! isset($queryMapping['resultSetMapping'])) {
2446 2446
             throw MappingException::missingQueryMapping($this->name, $queryMapping['name']);
2447 2447
         }
2448 2448
 
@@ -2474,7 +2474,7 @@  discard block
 block discarded – undo
2474 2474
      */
2475 2475
     public function addSqlResultSetMapping(array $resultMapping)
2476 2476
     {
2477
-        if (!isset($resultMapping['name'])) {
2477
+        if ( ! isset($resultMapping['name'])) {
2478 2478
             throw MappingException::nameIsMandatoryForSqlResultSetMapping($this->name);
2479 2479
         }
2480 2480
 
@@ -2484,7 +2484,7 @@  discard block
 block discarded – undo
2484 2484
 
2485 2485
         if (isset($resultMapping['entities'])) {
2486 2486
             foreach ($resultMapping['entities'] as $key => $entityResult) {
2487
-                if (!isset($entityResult['entityClass'])) {
2487
+                if ( ! isset($entityResult['entityClass'])) {
2488 2488
                     throw MappingException::missingResultSetMappingEntity($this->name, $resultMapping['name']);
2489 2489
                 }
2490 2490
 
@@ -2503,11 +2503,11 @@  discard block
 block discarded – undo
2503 2503
 
2504 2504
                 if (isset($entityResult['fields'])) {
2505 2505
                     foreach ($entityResult['fields'] as $k => $field) {
2506
-                        if (!isset($field['name'])) {
2506
+                        if ( ! isset($field['name'])) {
2507 2507
                             throw MappingException::missingResultSetMappingFieldName($this->name, $resultMapping['name']);
2508 2508
                         }
2509 2509
 
2510
-                        if (!isset($field['column'])) {
2510
+                        if ( ! isset($field['column'])) {
2511 2511
                             $fieldName = $field['name'];
2512 2512
                             if (strpos($fieldName, '.')) {
2513 2513
                                 list(, $fieldName) = explode('.', $fieldName);
@@ -2998,7 +2998,7 @@  discard block
 block discarded – undo
2998 2998
         }
2999 2999
 
3000 3000
         if ($definition['sequenceName'][0] == '`') {
3001
-            $definition['sequenceName']   = trim($definition['sequenceName'], '`');
3001
+            $definition['sequenceName'] = trim($definition['sequenceName'], '`');
3002 3002
             $definition['quoted'] = true;
3003 3003
         }
3004 3004
 
@@ -3090,7 +3090,7 @@  discard block
 block discarded – undo
3090 3090
     public function getAssociationTargetClass($assocName)
3091 3091
     {
3092 3092
         if ( ! isset($this->associationMappings[$assocName])) {
3093
-            throw new InvalidArgumentException("Association name expected, '" . $assocName ."' is not an association.");
3093
+            throw new InvalidArgumentException("Association name expected, '".$assocName."' is not an association.");
3094 3094
         }
3095 3095
 
3096 3096
         return $this->associationMappings[$assocName]['targetEntity'];
@@ -3129,7 +3129,7 @@  discard block
 block discarded – undo
3129 3129
             // Association defined as Id field
3130 3130
             $joinColumns            = $this->associationMappings[$idProperty]['joinColumns'];
3131 3131
             $assocQuotedColumnNames = array_map(
3132
-                function ($joinColumn) use ($platform) {
3132
+                function($joinColumn) use ($platform) {
3133 3133
                     return isset($joinColumn['quoted'])
3134 3134
                         ? $platform->quoteIdentifier($joinColumn['name'])
3135 3135
                         : $joinColumn['name'];
@@ -3240,7 +3240,7 @@  discard block
 block discarded – undo
3240 3240
         }
3241 3241
 
3242 3242
         if ($className !== null && strpos($className, '\\') === false && $this->namespace) {
3243
-            return $this->namespace . '\\' . $className;
3243
+            return $this->namespace.'\\'.$className;
3244 3244
         }
3245 3245
 
3246 3246
         return $className;
@@ -3294,15 +3294,15 @@  discard block
 block discarded – undo
3294 3294
                 ? $fieldMapping['originalClass']
3295 3295
                 : $embeddable->name;
3296 3296
             $fieldMapping['declaredField'] = isset($fieldMapping['declaredField'])
3297
-                ? $property . '.' . $fieldMapping['declaredField']
3297
+                ? $property.'.'.$fieldMapping['declaredField']
3298 3298
                 : $property;
3299 3299
             $fieldMapping['originalField'] = isset($fieldMapping['originalField'])
3300 3300
                 ? $fieldMapping['originalField']
3301 3301
                 : $fieldMapping['fieldName'];
3302
-            $fieldMapping['fieldName'] = $property . "." . $fieldMapping['fieldName'];
3302
+            $fieldMapping['fieldName'] = $property.".".$fieldMapping['fieldName'];
3303 3303
 
3304
-            if (! empty($this->embeddedClasses[$property]['columnPrefix'])) {
3305
-                $fieldMapping['columnName'] = $this->embeddedClasses[$property]['columnPrefix'] . $fieldMapping['columnName'];
3304
+            if ( ! empty($this->embeddedClasses[$property]['columnPrefix'])) {
3305
+                $fieldMapping['columnName'] = $this->embeddedClasses[$property]['columnPrefix'].$fieldMapping['columnName'];
3306 3306
             } elseif ($this->embeddedClasses[$property]['columnPrefix'] !== false) {
3307 3307
                 $fieldMapping['columnName'] = $this->namingStrategy
3308 3308
                     ->embeddedFieldToColumnName(
@@ -3343,7 +3343,7 @@  discard block
 block discarded – undo
3343 3343
     {
3344 3344
         $sequencePrefix = $this->getSequencePrefix($platform);
3345 3345
         $columnName     = $this->getSingleIdentifierColumnName();
3346
-        $sequenceName   = $sequencePrefix . '_' . $columnName . '_seq';
3346
+        $sequenceName   = $sequencePrefix.'_'.$columnName.'_seq';
3347 3347
 
3348 3348
         return $sequenceName;
3349 3349
     }
@@ -3363,10 +3363,10 @@  discard block
 block discarded – undo
3363 3363
 
3364 3364
         // Prepend the schema name to the table name if there is one
3365 3365
         if ($schemaName = $this->getSchemaName()) {
3366
-            $sequencePrefix = $schemaName . '.' . $tableName;
3366
+            $sequencePrefix = $schemaName.'.'.$tableName;
3367 3367
 
3368 3368
             if ( ! $platform->supportsSchemas() && $platform->canEmulateSchemas()) {
3369
-                $sequencePrefix = $schemaName . '__' . $tableName;
3369
+                $sequencePrefix = $schemaName.'__'.$tableName;
3370 3370
             }
3371 3371
         }
3372 3372
 
@@ -3378,8 +3378,8 @@  discard block
 block discarded – undo
3378 3378
      */
3379 3379
     private function assertMappingOrderBy(array $mapping)
3380 3380
     {
3381
-        if (isset($mapping['orderBy']) && !is_array($mapping['orderBy'])) {
3382
-            throw new InvalidArgumentException("'orderBy' is expected to be an array, not " . gettype($mapping['orderBy']));
3381
+        if (isset($mapping['orderBy']) && ! is_array($mapping['orderBy'])) {
3382
+            throw new InvalidArgumentException("'orderBy' is expected to be an array, not ".gettype($mapping['orderBy']));
3383 3383
         }
3384 3384
     }
3385 3385
 }
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1428,7 +1428,7 @@
 block discarded – undo
1428 1428
 
1429 1429
         if (Type::hasType($mapping['type']) && Type::getType($mapping['type'])->canRequireSQLConversion()) {
1430 1430
             if (isset($mapping['id']) && true === $mapping['id']) {
1431
-                 throw MappingException::sqlConversionNotAllowedForIdentifiers($this->name, $mapping['fieldName'], $mapping['type']);
1431
+                    throw MappingException::sqlConversionNotAllowedForIdentifiers($this->name, $mapping['fieldName'], $mapping['type']);
1432 1432
             }
1433 1433
 
1434 1434
             $mapping['requireSQLConversion'] = true;
Please login to merge, or discard this patch.