Completed
Pull Request — master (#127)
by Alex
05:23
created
src/MetadataManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $newEntity->setName($name);
65 65
         $this->addDocumentation($summary, $longDescription, $newEntity);
66 66
         $newEntity->setAbstract($isAbstract);
67
-        $newEntity->setBaseType(null === $baseType ? null:$this->getNamespace() . $baseType->getName());
67
+        $newEntity->setBaseType(null === $baseType ? null : $this->getNamespace() . $baseType->getName());
68 68
 
69 69
         $entitySet = new EntitySetAnonymousType();
70 70
         $entitySet->setName(Str::plural($newEntity->getName()));
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
 
368 368
         $namespace = $this->getNamespace();
369 369
         $typeName = $expectedReturnType->getName();
370
-        $fqTypeName = $namespace.$typeName;
370
+        $fqTypeName = $namespace . $typeName;
371 371
 
372 372
         $returnType = new TFunctionImportReturnTypeType();
373 373
         $returnType->setType($fqTypeName);
Please login to merge, or discard this patch.