Passed
Push — master ( f37dc8...04663b )
by Christopher
06:45
created
src/MetadataManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@
 block discarded – undo
309 309
         if (null != $dependentNavigationProperty) {
310 310
             if ($dependentNavigationProperty->getRelationship() != $principalNavigationProperty->getRelationship()) {
311 311
                 $msg = 'If you have both a dependent property and a principal property,'
312
-                       .' relationship should match';
312
+                        .' relationship should match';
313 313
                 throw new \InvalidArgumentException($msg);
314 314
             }
315 315
             if ($dependentNavigationProperty->getFromRole() != $principalNavigationProperty->getToRole()
Please login to merge, or discard this patch.
src/MetadataV3/edm/TEntityTypeType.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
             $propName = $prop->getName();
473 473
             if (in_array($propName, $pArray)) {
474 474
                 $msg = 'Prop: Property Names, and Navigation Property Must Be Unique for '. $propName . ' on '
475
-                       . $this->getName() . ' '. __CLASS__;
475
+                        . $this->getName() . ' '. __CLASS__;
476 476
                 return false;
477 477
             }
478 478
             $pArray[] = $propName;
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
             $propName = $prop->getName();
482 482
             if (in_array($propName, $pArray)) {
483 483
                 $msg = 'Nav: Property Names, and Navigation Property Must Be Unique for '. $propName . ' on '
484
-                       . $this->getName() . ' '. __CLASS__;
484
+                        . $this->getName() . ' '. __CLASS__;
485 485
                 return false;
486 486
             }
487 487
             $pArray[] = $prop->getName();
Please login to merge, or discard this patch.