Passed
Pull Request — master (#44)
by Alex
03:15
created
Validation/Internal/InterfaceValidator/VisitorOfISpatialTypeReference.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()->IsSpatial()
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.
Validation/Internal/InterfaceValidator/VisitorOfIBinaryTypeReference.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()->isBinary()
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/VisitorOfIBinaryValue.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 IBinaryValue);
16 16
         return null !== $value->getValue() ?
17
-            [InterfaceValidator::CreatePropertyMustNotBeNullError($value, 'Value') ]
17
+            [InterfaceValidator::CreatePropertyMustNotBeNullError($value, 'Value')]
18 18
             :
19 19
             null;
20 20
     }
Please login to merge, or discard this patch.
StructuralPropertyInvalidPropertyTypeConcurrencyMode.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
                 StringConst::EdmModel_Validator_Semantic_InvalidPropertyTypeConcurrencyMode(
36 36
                     (
37 37
                         $propType->IsCollection() ?
38
-                        EdmConstants::Type_Collection :
39
-                        $propType->TypeKind()->getKey()
38
+                        EdmConstants::Type_Collection : $propType->TypeKind()->getKey()
40 39
                     )
41 40
                 )
42 41
             );
Please login to merge, or discard this patch.
IStructuralProperty/StructuralPropertyInvalidPropertyType.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
         assert($property instanceof IStructuralProperty);
25 25
         if ($property->getDeclaringType()->getTypeKind()->isRow()) {
26 26
             $validatedType = $property->getType()->IsCollection() ?
27
-                $property->getType()->AsCollection()->ElementType()->getDefinition() :
28
-                $property->getType()->getDefinition();
27
+                $property->getType()->AsCollection()->ElementType()->getDefinition() : $property->getType()->getDefinition();
29 28
 
30 29
             EdmUtil::checkArgumentNull($validatedType, 'validatedType');
31 30
             if (!$validatedType->getTypeKind()->isPrimitive() &&
Please login to merge, or discard this patch.
IFunctionImport/FunctionImportEntityTypeDoesNotMatchEntitySet.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
         EdmUtil::checkArgumentNull($functionImport->Location(), 'functionImport->Location');
29 29
         if ($functionImport->getEntitySet() != null && $functionImport->getReturnType() != null) {
30 30
             $elementType = $functionImport->getReturnType()->IsCollection() ?
31
-                $functionImport->getReturnType()->AsCollection()->ElementType() :
32
-                $functionImport->getReturnType();
31
+                $functionImport->getReturnType()->AsCollection()->ElementType() : $functionImport->getReturnType();
33 32
             if ($elementType->IsEntity()) {
34 33
                 $returnedEntityType = $elementType->AsEntity()->EntityDefinition();
35 34
 
Please login to merge, or discard this patch.
IEnumMember/EnumMemberValueMustHaveSameTypeAsUnderlyingType.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@
 block discarded – undo
26 26
         assert($enumMember instanceof IEnumMember);
27 27
         $discoveredErrors = [];
28 28
         if (
29
-                       !$context->checkIsBad($enumMember->getDeclaringType()) &&
29
+                        !$context->checkIsBad($enumMember->getDeclaringType()) &&
30 30
                        !$context->checkIsBad($enumMember->getDeclaringType()->getUnderlyingType()) &&
31 31
                        !ExpressionTypeChecker::TryAssertPrimitiveAsType(
32
-                           $enumMember->getValue(),
33
-                           EdmTypeSemantics::GetPrimitiveTypeReference($enumMember->getDeclaringType()->getUnderlyingType(), false),
34
-                           $discoveredErrors
35
-                       )) {
32
+                            $enumMember->getValue(),
33
+                            EdmTypeSemantics::GetPrimitiveTypeReference($enumMember->getDeclaringType()->getUnderlyingType(), false),
34
+                            $discoveredErrors
35
+                        )) {
36 36
             EdmUtil::checkArgumentNull($enumMember->Location(), 'enumMember->Location');
37 37
             $context->AddError(
38 38
                 $enumMember->Location(),
Please login to merge, or discard this patch.
Validation/ValidationRules/INamedElement/NamedElementNameIsNotAllowed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             return;
32 32
         }
33 33
 
34
-        if (! EdmUtil::IsNullOrWhiteSpaceInternal($item->getName()) && mb_strlen($item->getName()) <= CsdlConstants::Max_NameLength && mb_strlen($item->getName()) > 0) {
34
+        if (!EdmUtil::IsNullOrWhiteSpaceInternal($item->getName()) && mb_strlen($item->getName()) <= CsdlConstants::Max_NameLength && mb_strlen($item->getName()) > 0) {
35 35
             if (!EdmUtil::IsValidUndottedName($item->getName())) {
36 36
                 EdmUtil::checkArgumentNull($item->Location(), 'item->Location');
37 37
                 $context->AddError(
Please login to merge, or discard this patch.