@@ -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 |
@@ -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 |
@@ -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 |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | break; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - return null !== $typeKindError ? [$typeKindError ] : null; |
|
| 101 | + return null !== $typeKindError ? [$typeKindError] : null; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | 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 |
@@ -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 |
@@ -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 | } |
@@ -15,7 +15,7 @@ |
||
| 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 |