@@ -33,7 +33,7 @@ |
||
33 | 33 | break; |
34 | 34 | } |
35 | 35 | |
36 | - return null !== $termKindError ? [ $termKindError ] : null; |
|
36 | + return null !== $termKindError ? [$termKindError] : null; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | 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 |
@@ -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 |
@@ -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($typeRef instanceof IEnumTypeReference); |
16 | 16 | return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind()->isEnum() |
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($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 |
@@ -59,7 +59,7 @@ |
||
59 | 59 | break; |
60 | 60 | } |
61 | 61 | |
62 | - return null !== $typeKindError ? [$typeKindError ] : null; |
|
62 | + return null !== $typeKindError ? [$typeKindError] : null; |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | public function forType(): string |
@@ -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 |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | $expressionKindError = InterfaceValidator::CheckForInterfaceKindValueMismatchError($expression, $expression->getExpressionKind(), 'ExpressionKind', IEnumMemberReferenceExpression::class); |
125 | 125 | break; |
126 | 126 | |
127 | - case ExpressionKind::If(): |
|
127 | + case ExpressionKind::If (): |
|
128 | 128 | $expressionKindError = InterfaceValidator::CheckForInterfaceKindValueMismatchError($expression, $expression->getExpressionKind(), 'ExpressionKind', IIfExpression::class); |
129 | 129 | break; |
130 | 130 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | } |
155 | 155 | } |
156 | 156 | |
157 | - return null !== $expressionKindError ? [ $expressionKindError ] : null; |
|
157 | + return null !== $expressionKindError ? [$expressionKindError] : null; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | public function forType(): string |