Passed
Pull Request — master (#44)
by Alex
03:33
created
src/Helpers/ToTraceString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             case $element instanceof IProperty:
50 50
                 assert($element instanceof IProperty);
51 51
                 $type = $element->getType();
52
-                return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) :'');
52
+                return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) : '');
53 53
             case $element instanceof IEntityReferenceType:
54 54
                 assert($element instanceof IEntityReferenceType);
55 55
                 return TypeKind::EntityReference()->getKey() . '(' . ($element->getEntityType() !== null ? self::ToTraceString($element->getEntityType()) : '') . ')';
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             $sb,
171 171
             EdmConstants::FacetName_Srid,
172 172
             null !== $type->getSpatialReferenceIdentifier()
173
-                ? $type->getSpatialReferenceIdentifier(): EdmConstants::Value_SridVariable
173
+                ? $type->getSpatialReferenceIdentifier() : EdmConstants::Value_SridVariable
174 174
         );
175 175
         return $sb;
176 176
     }
Please login to merge, or discard this patch.
src/Helpers/ModelHelpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -420,7 +420,7 @@
 block discarded – undo
420 420
         $navigationPropertyMappings = $model->GetAnnotationValue(SplObjectStorage::class, $entitySet, EdmConstants::InternalUri, CsdlConstants::AssociationSetNameAnnotation);
421 421
         assert($navigationPropertyMappings instanceof SplObjectStorage || $navigationPropertyMappings === null);
422 422
         if ($navigationPropertyMappings !== null && $navigationPropertyMappings->offsetExists($property)) {
423
-            $associationSetName = $navigationPropertyMappings->offsetGet($property) ;
423
+            $associationSetName = $navigationPropertyMappings->offsetGet($property);
424 424
         } else {
425 425
             $associationSetName = $model->GetAssociationName($property) . 'Set';
426 426
         }
Please login to merge, or discard this patch.
src/Version.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     private static function fillVersions()
69 69
     {
70 70
         if (null === self::$fixedVersion) {
71
-            self::$fixedVersion = [1 => new self(1, 0), 11 => new self(1, 1), 12 => new self(1, 2),2 => new self(2, 0), 3 => new self(3, 0)];
71
+            self::$fixedVersion = [1 => new self(1, 0), 11 => new self(1, 1), 12 => new self(1, 2), 2 => new self(2, 0), 3 => new self(3, 0)];
72 72
         }
73 73
     }
74 74
 
Please login to merge, or discard this patch.
Internal/InterfaceValidator/VisitorOfICollectionTypeReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         assert($typeRef instanceof ICollectionTypeReference);
16 16
         return null !== $typeRef->getDefinition() &&
17 17
                !$typeRef->getDefinition()->getTypeKind()->IsCollection() ?
18
-            [ InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)]: null;
18
+            [InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null;
19 19
     }
20 20
 
21 21
     public function forType(): string
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfISchemaElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                         );
34 34
                         break;
35 35
 
36
-                    case SchemaElementKind::Function():
36
+                    case SchemaElementKind::Function ():
37 37
                         InterfaceValidator::CollectErrors(
38 38
                             InterfaceValidator::CheckForInterfaceKindValueMismatchError(
39 39
                                 $item,
Please login to merge, or discard this patch.
Edm/Validation/Internal/InterfaceValidator/VisitorOfIRowTypeReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         assert($typeRef instanceof IRowTypeReference);
17 17
         return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind() != TypeKind::Row()
18
-            ? [ InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null;
18
+            ? [InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null;
19 19
     }
20 20
 
21 21
     public function forType(): string
Please login to merge, or discard this patch.
Validation/Internal/InterfaceValidator/VisitorOfIStringTypeReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $primitive = $typeRef->getDefinition();
18 18
         assert($primitive instanceof IPrimitiveType);
19 19
         return null !== $typeRef->getDefinition() && !$primitive->getPrimitiveKind()->isString()
20
-            ? [ InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null;
20
+            ? [InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null;
21 21
     }
22 22
 
23 23
     public function forType(): string
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfIPropertyValue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         assert($value instanceof IPropertyValue);
16 16
         return null === $value->getName() ?
17
-            [ InterfaceValidator::CreatePropertyMustNotBeNullError($value, 'Name') ]
17
+            [InterfaceValidator::CreatePropertyMustNotBeNullError($value, 'Name')]
18 18
             :
19 19
             null;
20 20
     }
Please login to merge, or discard this patch.
Validation/Internal/InterfaceValidator/VisitorOfIComplexTypeReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         assert($typeRef instanceof IComplexTypeReference);
16 16
         return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind()->isComplex()
17
-            ? [ InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null;
17
+            ? [InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null;
18 18
     }
19 19
 
20 20
     public function forType(): string
Please login to merge, or discard this patch.