@@ -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 |
@@ -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 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | return null; |
29 | 29 | } else { |
30 | - return [ InterfaceValidator::createPropertyMustNotBeNullError($type, 'Definition')]; |
|
30 | + return [InterfaceValidator::createPropertyMustNotBeNullError($type, 'Definition')]; |
|
31 | 31 | } |
32 | 32 | } |
33 | 33 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $primitive = $typeRef->getDefinition(); |
18 | 18 | assert($primitive instanceof IPrimitiveType); |
19 | 19 | return null !== $typeRef->getDefinition() && !$primitive->getPrimitiveKind()->isString() |
20 | - ? [ InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
20 | + ? [InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function forType(): string |
@@ -16,7 +16,7 @@ |
||
16 | 16 | assert($typeRef instanceof IRowTypeReference); |
17 | 17 | return null !== $typeRef->getDefinition() && |
18 | 18 | $typeRef->getDefinition()->getTypeKind() != TypeKind::Row() |
19 | - ? [ InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
19 | + ? [InterfaceValidator::createTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | public function forType(): string |
@@ -18,7 +18,7 @@ |
||
18 | 18 | $followup[] = $type->getElementType(); |
19 | 19 | return null; |
20 | 20 | } else { |
21 | - return[ InterfaceValidator::createPropertyMustNotBeNullError($type, 'ElementType')]; |
|
21 | + return[InterfaceValidator::createPropertyMustNotBeNullError($type, 'ElementType')]; |
|
22 | 22 | } |
23 | 23 | } |
24 | 24 |
@@ -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 |