@@ -17,7 +17,7 @@ |
||
| 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 |
@@ -17,7 +17,7 @@ |
||
| 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 |
@@ -14,7 +14,7 @@ |
||
| 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 | } |
@@ -35,8 +35,7 @@ |
||
| 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 | ); |
@@ -24,8 +24,7 @@ |
||
| 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() && |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | return; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - if (! EdmUtil::IsNullOrWhiteSpaceInternal($item->getName()) && strlen($item->getName()) <= CsdlConstants::Max_NameLength && strlen($item->getName()) > 0) { |
|
| 34 | + if (!EdmUtil::IsNullOrWhiteSpaceInternal($item->getName()) && strlen($item->getName()) <= CsdlConstants::Max_NameLength && strlen($item->getName()) > 0) { |
|
| 35 | 35 | if (!EdmUtil::IsValidUndottedName($item->getName())) { |
| 36 | 36 | EdmUtil::checkArgumentNull($item->Location(), 'item->Location'); |
| 37 | 37 | $context->AddError( |
@@ -28,8 +28,7 @@ |
||
| 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 | |
@@ -26,13 +26,13 @@ |
||
| 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(), |