@@ -15,7 +15,7 @@ |
||
| 15 | 15 | assert($function instanceof IFunction); |
| 16 | 16 | // No need to return the return type as followup - it is handled as such in the IFunctionBase visitor. |
| 17 | 17 | return (null === $function->getParameters()) |
| 18 | - ? [ InterfaceValidator::createPropertyMustNotBeNullError($function, 'ReturnType') ] : null; |
|
| 18 | + ? [InterfaceValidator::createPropertyMustNotBeNullError($function, 'ReturnType')] : null; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | 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()->isDecimal() |
| 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 | $followup[] = $value->getValue(); |
| 18 | 18 | return null; |
| 19 | 19 | } else { |
| 20 | - return [ InterfaceValidator::createPropertyMustNotBeNullError($value, 'Value') ]; |
|
| 20 | + return [InterfaceValidator::createPropertyMustNotBeNullError($value, 'Value')]; |
|
| 21 | 21 | } |
| 22 | 22 | } |
| 23 | 23 | |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | assert($typeRef instanceof IEntityTypeReference); |
| 16 | 16 | |
| 17 | 17 | return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind()->isEntity() |
| 18 | - ? [ InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
| 18 | + ? [InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | 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 |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $references[] = $expression->getReferencedParameter(); |
| 18 | 18 | return null; |
| 19 | 19 | } else { |
| 20 | - return [ InterfaceValidator::createPropertyMustNotBeNullError($expression, 'ReferencedParameter') ]; |
|
| 20 | + return [InterfaceValidator::createPropertyMustNotBeNullError($expression, 'ReferencedParameter')]; |
|
| 21 | 21 | } |
| 22 | 22 | } |
| 23 | 23 | |
@@ -14,7 +14,7 @@ |
||
| 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 |
@@ -20,11 +20,11 @@ |
||
| 20 | 20 | } |
| 21 | 21 | public static function getCycleSentinel(): ?stdClass |
| 22 | 22 | { |
| 23 | - return (object)[]; |
|
| 23 | + return (object) []; |
|
| 24 | 24 | } |
| 25 | 25 | public static function getSecondPassCycleSentinel(): ?stdClass |
| 26 | 26 | { |
| 27 | - return (object)[]; |
|
| 27 | + return (object) []; |
|
| 28 | 28 | } |
| 29 | 29 | public static function getBoxed(bool $value) |
| 30 | 30 | { |
@@ -94,8 +94,8 @@ |
||
| 94 | 94 | $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmxVersion(), StringConst::Serializer_UnknownEdmxVersion())]; |
| 95 | 95 | return false; |
| 96 | 96 | } |
| 97 | - } elseif (! $edmxVersion = CsdlConstants::edmToEdmxVersions($model->getEdmVersion() ?? Version::v3())) { |
|
| 98 | - $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmVersion(), StringConst::Serializer_UnknownEdmVersion()) ]; |
|
| 97 | + } elseif (!$edmxVersion = CsdlConstants::edmToEdmxVersions($model->getEdmVersion() ?? Version::v3())) { |
|
| 98 | + $errors = [new EdmError(new CsdlLocation(0, 0), EdmErrorCode::UnknownEdmVersion(), StringConst::Serializer_UnknownEdmVersion())]; |
|
| 99 | 99 | return false; |
| 100 | 100 | } |
| 101 | 101 | |