Completed
Branch master (ee91f8)
by
unknown
08:26
created
src/Exceptions/ErrorCollection.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
      */
403 403
     protected function getPathToData()
404 404
     {
405
-        return '/' . DocumentInterface::KEYWORD_DATA;
405
+        return '/'.DocumentInterface::KEYWORD_DATA;
406 406
     }
407 407
 
408 408
     /**
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
      */
411 411
     protected function getPathToType()
412 412
     {
413
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_TYPE;
413
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_TYPE;
414 414
     }
415 415
 
416 416
     /**
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
      */
419 419
     protected function getPathToId()
420 420
     {
421
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_ID;
421
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_ID;
422 422
     }
423 423
 
424 424
     /**
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
      */
429 429
     protected function getPathToAttribute($name)
430 430
     {
431
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_ATTRIBUTES . '/' . $name;
431
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_ATTRIBUTES.'/'.$name;
432 432
     }
433 433
 
434 434
     /**
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
      */
437 437
     protected function getPathToRelationships()
438 438
     {
439
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_RELATIONSHIPS;
439
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_RELATIONSHIPS;
440 440
     }
441 441
 
442 442
     /**
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
      */
447 447
     protected function getPathToRelationship($name)
448 448
     {
449
-        return $this->getPathToRelationships() . '/' . $name;
449
+        return $this->getPathToRelationships().'/'.$name;
450 450
     }
451 451
 
452 452
     /**
@@ -456,8 +456,8 @@  discard block
 block discarded – undo
456 456
      */
457 457
     protected function getPathToRelationshipType($name)
458 458
     {
459
-        return $this->getPathToRelationship($name) . '/' .
460
-            DocumentInterface::KEYWORD_DATA . '/' . DocumentInterface::KEYWORD_TYPE;
459
+        return $this->getPathToRelationship($name).'/'.
460
+            DocumentInterface::KEYWORD_DATA.'/'.DocumentInterface::KEYWORD_TYPE;
461 461
     }
462 462
 
463 463
     /**
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
      */
468 468
     protected function getPathToRelationshipId($name)
469 469
     {
470
-        return $this->getPathToRelationship($name) . '/' .
471
-            DocumentInterface::KEYWORD_DATA . '/' . DocumentInterface::KEYWORD_ID;
470
+        return $this->getPathToRelationship($name).'/'.
471
+            DocumentInterface::KEYWORD_DATA.'/'.DocumentInterface::KEYWORD_ID;
472 472
     }
473 473
 }
Please login to merge, or discard this patch.