@@ -61,7 +61,7 @@ |
||
61 | 61 | $this->lookup[ExpressionKind::ValueTermReference()->getValue()] = IValueTermReferenceExpression::class; |
62 | 62 | $this->lookup[ExpressionKind::EntitySetReference()->getValue()] = IEntitySetReferenceExpression::class; |
63 | 63 | $this->lookup[ExpressionKind::EnumMemberReference()->getValue()] = IEnumMemberReferenceExpression::class; |
64 | - $this->lookup[ExpressionKind::If()->getValue()] = IIfExpression::class; |
|
64 | + $this->lookup[ExpressionKind::If ()->getValue()] = IIfExpression::class; |
|
65 | 65 | $this->lookup[ExpressionKind::AssertType()->getValue()] = IAssertTypeExpression::class; |
66 | 66 | $this->lookup[ExpressionKind::IsType()->getValue()] = IIsTypeExpression::class; |
67 | 67 | $this->lookup[ExpressionKind::FunctionApplication()->getValue()] = IApplyExpression::class; |
@@ -61,7 +61,9 @@ |
||
61 | 61 | $this->lookup[ExpressionKind::ValueTermReference()->getValue()] = IValueTermReferenceExpression::class; |
62 | 62 | $this->lookup[ExpressionKind::EntitySetReference()->getValue()] = IEntitySetReferenceExpression::class; |
63 | 63 | $this->lookup[ExpressionKind::EnumMemberReference()->getValue()] = IEnumMemberReferenceExpression::class; |
64 | - $this->lookup[ExpressionKind::If()->getValue()] = IIfExpression::class; |
|
64 | + $this->lookup[ExpressionKind::If() { |
|
65 | + ->getValue()] = IIfExpression::class; |
|
66 | + } |
|
65 | 67 | $this->lookup[ExpressionKind::AssertType()->getValue()] = IAssertTypeExpression::class; |
66 | 68 | $this->lookup[ExpressionKind::IsType()->getValue()] = IIsTypeExpression::class; |
67 | 69 | $this->lookup[ExpressionKind::FunctionApplication()->getValue()] = IApplyExpression::class; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $this->lookup[ExpressionKind::DecimalConstant()->getValue()] = IDecimalConstantExpression::class; |
52 | 52 | $this->lookup[ExpressionKind::FloatingConstant()->getValue()] = IFloatingConstantExpression::class; |
53 | 53 | $this->lookup[ExpressionKind::GuidConstant()->getValue()] = IGuidConstantExpression::class; |
54 | - $this->lookup[ExpressionKind::Null()->getValue()] = INullExpression::class; |
|
54 | + $this->lookup[ExpressionKind::null()->getValue()] = INullExpression::class; |
|
55 | 55 | $this->lookup[ExpressionKind::Record()->getValue()] = IRecordExpression::class; |
56 | 56 | $this->lookup[ExpressionKind::Collection()->getValue()] = ICollectionExpression::class; |
57 | 57 | $this->lookup[ExpressionKind::Path()->getValue()] = IPathExpression::class; |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $this->lookup[ExpressionKind::ValueTermReference()->getValue()] = IValueTermReferenceExpression::class; |
62 | 62 | $this->lookup[ExpressionKind::EntitySetReference()->getValue()] = IEntitySetReferenceExpression::class; |
63 | 63 | $this->lookup[ExpressionKind::EnumMemberReference()->getValue()] = IEnumMemberReferenceExpression::class; |
64 | - $this->lookup[ExpressionKind::If()->getValue()] = IIfExpression::class; |
|
64 | + $this->lookup[ExpressionKind::if()->getValue()] = IIfExpression::class; |
|
65 | 65 | $this->lookup[ExpressionKind::AssertType()->getValue()] = IAssertTypeExpression::class; |
66 | 66 | $this->lookup[ExpressionKind::IsType()->getValue()] = IIsTypeExpression::class; |
67 | 67 | $this->lookup[ExpressionKind::FunctionApplication()->getValue()] = IApplyExpression::class; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | assert($typeRef instanceof IStructuredTypeReference); |
16 | 16 | return null !== $typeRef->getDefinition() && !$typeRef->getDefinition()->getTypeKind()->IsStructured() |
17 | - ? [ InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef) ] : null; |
|
17 | + ? [InterfaceValidator::CreateTypeRefInterfaceTypeKindValueMismatchError($typeRef)] : null; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | 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()->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($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 |
@@ -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 |
@@ -43,8 +43,7 @@ |
||
43 | 43 | StringConst::EdmModel_Validator_Semantic_InvalidPropertyTypeConcurrencyMode( |
44 | 44 | ( |
45 | 45 | $propType->IsCollection() ? |
46 | - EdmConstants::Type_Collection : |
|
47 | - $key |
|
46 | + EdmConstants::Type_Collection : $key |
|
48 | 47 | ) |
49 | 48 | ) |
50 | 49 | ); |
@@ -24,8 +24,7 @@ |
||
24 | 24 | assert($property instanceof IStructuralProperty); |
25 | 25 | if ($property->getDeclaringType()->getTypeKind()->isRow()) { |
26 | 26 | $validatedType = $property->getType()->IsCollection() ? |
27 | - $property->getType()->AsCollection()->ElementType()->getDefinition() : |
|
28 | - $property->getType()->getDefinition(); |
|
27 | + $property->getType()->AsCollection()->ElementType()->getDefinition() : $property->getType()->getDefinition(); |
|
29 | 28 | |
30 | 29 | EdmUtil::checkArgumentNull($validatedType, 'validatedType'); |
31 | 30 | if (!$validatedType->getTypeKind()->isPrimitive() && |
@@ -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, |
@@ -47,7 +47,7 @@ |
||
47 | 47 | */ |
48 | 48 | public function getExpressionKind(): ExpressionKind |
49 | 49 | { |
50 | - return ExpressionKind::If(); |
|
50 | + return ExpressionKind::If (); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -47,7 +47,7 @@ |
||
47 | 47 | */ |
48 | 48 | public function getExpressionKind(): ExpressionKind |
49 | 49 | { |
50 | - return ExpressionKind::If(); |
|
50 | + return ExpressionKind::if(); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |