@@ -36,7 +36,7 @@ |
||
| 36 | 36 | // Note: this check can be done without the try/catch block, but we need XmlConvert.IsStartNCNameChar and |
| 37 | 37 | // XmlConvert.IsNCNameChar, which are not available in 3.5. |
| 38 | 38 | if (!XmlConvert::verifyNCName($annotation->getName())) { |
| 39 | - $value = $annotation->getValue() ; |
|
| 39 | + $value = $annotation->getValue(); |
|
| 40 | 40 | $errorLocation = ($value === null || !($value instanceof IValue)) ? null : $value->location(); |
| 41 | 41 | $error = new EdmError( |
| 42 | 42 | $errorLocation, |
@@ -28,8 +28,7 @@ |
||
| 28 | 28 | public static function validate(IModel $root, $versionOrRuleset, array &$errors): bool |
| 29 | 29 | { |
| 30 | 30 | $ruleSet = $versionOrRuleset instanceof Version ? |
| 31 | - ValidationRuleSet::getEdmModelRuleSet($versionOrRuleset) : |
|
| 32 | - $versionOrRuleset; |
|
| 31 | + ValidationRuleSet::getEdmModelRuleSet($versionOrRuleset) : $versionOrRuleset; |
|
| 33 | 32 | assert($ruleSet instanceof ValidationRuleSet); |
| 34 | 33 | $errors = InterfaceValidator::validateModelStructureAndSemantics($root, $ruleSet); |
| 35 | 34 | return count($errors) === 0; |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | assert($typeRef instanceof IPrimitiveTypeReference); |
| 16 | 16 | return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind()->isPrimitive() |
| 17 | - ? [ InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
| 17 | + ? [InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | 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 | } |
@@ -14,7 +14,7 @@ |
||
| 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 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $primitive = $typeRef->getDefinition(); |
| 18 | 18 | assert($primitive instanceof IPrimitiveType); |
| 19 | 19 | return null !== $typeRef->getDefinition() && !$primitive->getPrimitiveKind()->isTemporal() |
| 20 | - ? [ InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
| 20 | + ? [InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | public function forType(): string |
@@ -15,7 +15,7 @@ |
||
| 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 |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | assert($item instanceof INamedElement); |
| 16 | 16 | return null !== $item->getName() |
| 17 | - ? null : [ InterfaceValidator::createPropertyMustNotBeNullError($item, 'Name') ]; |
|
| 17 | + ? null : [InterfaceValidator::createPropertyMustNotBeNullError($item, 'Name')]; |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | public function forType(): string |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | $references[] = $expression->getReferencedFunction(); |
| 25 | 25 | return null; |
| 26 | 26 | } else { |
| 27 | - return [ InterfaceValidator::createPropertyMustNotBeNullError($expression, 'ReferencedFunction') ]; |
|
| 27 | + return [InterfaceValidator::createPropertyMustNotBeNullError($expression, 'ReferencedFunction')]; |
|
| 28 | 28 | } |
| 29 | 29 | } |
| 30 | 30 | |