Passed
Push — master ( f37dc8...04663b )
by Christopher
06:45
created
src/MetadataManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
 
443 443
         $namespace = $this->getNamespace();
444 444
         $typeName = $expectedReturnType->getName();
445
-        $fqTypeName = $namespace.$typeName;
445
+        $fqTypeName = $namespace . $typeName;
446 446
         $fqSetName = ($entitySet == null) ? $typeName : $entitySet->getName();
447 447
 
448 448
         $returnType = new TFunctionImportReturnTypeType();
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
 
476 476
     public function __wakeup()
477 477
     {
478
-        self::$typeNameToSetName = unserialize($this->serializer );
478
+        self::$typeNameToSetName = unserialize($this->serializer);
479 479
         $this->initSerialiser();
480 480
     }
481 481
 
Please login to merge, or discard this patch.
src/MetadataV3/edm/TEntityTypeType.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -471,8 +471,8 @@  discard block
 block discarded – undo
471 471
         foreach ($this->getProperty() as $prop) {
472 472
             $propName = $prop->getName();
473 473
             if (in_array($propName, $pArray)) {
474
-                $msg = 'Prop: Property Names, and Navigation Property Must Be Unique for '. $propName . ' on '
475
-                       . $this->getName() . ' '. __CLASS__;
474
+                $msg = 'Prop: Property Names, and Navigation Property Must Be Unique for ' . $propName . ' on '
475
+                       . $this->getName() . ' ' . __CLASS__;
476 476
                 return false;
477 477
             }
478 478
             $pArray[] = $propName;
@@ -480,8 +480,8 @@  discard block
 block discarded – undo
480 480
         foreach ($this->getNavigationProperty() as $prop) {
481 481
             $propName = $prop->getName();
482 482
             if (in_array($propName, $pArray)) {
483
-                $msg = 'Nav: Property Names, and Navigation Property Must Be Unique for '. $propName . ' on '
484
-                       . $this->getName() . ' '. __CLASS__;
483
+                $msg = 'Nav: Property Names, and Navigation Property Must Be Unique for ' . $propName . ' on '
484
+                       . $this->getName() . ' ' . __CLASS__;
485 485
                 return false;
486 486
             }
487 487
             $pArray[] = $prop->getName();
Please login to merge, or discard this patch.