@@ -132,8 +132,7 @@ discard block |
||
| 132 | 132 | $alias = null; |
| 133 | 133 | if ($this->namespaceAliasMappings != null) { |
| 134 | 134 | $alias = array_key_exists($element->getNamespace(), $this->namespaceAliasMappings) ? |
| 135 | - $this->namespaceAliasMappings[$element->getNamespace()] : |
|
| 136 | - null; |
|
| 135 | + $this->namespaceAliasMappings[$element->getNamespace()] : null; |
|
| 137 | 136 | } |
| 138 | 137 | |
| 139 | 138 | $this->schemaWriter->WriteSchemaElementHeader($element, $alias, $mappings); |
@@ -608,7 +607,7 @@ discard block |
||
| 608 | 607 | protected function ProcessPropertyReferenceExpression(IPropertyReferenceExpression $expression): void |
| 609 | 608 | { |
| 610 | 609 | $this->BeginElement($expression, [$this->schemaWriter, 'WritePropertyReferenceExpressionElementHeader']); |
| 611 | - if ($expression->getBase()!= null) { |
|
| 610 | + if ($expression->getBase() != null) { |
|
| 612 | 611 | $this->VisitExpression($expression->getBase()); |
| 613 | 612 | } |
| 614 | 613 | |
@@ -1206,10 +1205,10 @@ discard block |
||
| 1206 | 1205 | return false; |
| 1207 | 1206 | } |
| 1208 | 1207 | |
| 1209 | - $thisAssociationAnnotations =[]; |
|
| 1208 | + $thisAssociationAnnotations = []; |
|
| 1210 | 1209 | $thisEnd1Annotations = []; |
| 1211 | - $thisEnd2Annotations =[]; |
|
| 1212 | - $thisConstraintAnnotations =[]; |
|
| 1210 | + $thisEnd2Annotations = []; |
|
| 1211 | + $thisConstraintAnnotations = []; |
|
| 1213 | 1212 | $this->model->GetAssociationAnnotations( |
| 1214 | 1213 | $thisPrimary, |
| 1215 | 1214 | $thisAssociationAnnotations, |
@@ -1221,7 +1220,7 @@ discard block |
||
| 1221 | 1220 | $thatAssociationAnnotations = []; |
| 1222 | 1221 | $thatEnd1Annotations = []; |
| 1223 | 1222 | $thatEnd2Annotations = []; |
| 1224 | - $thatConstraintAnnotations =[]; |
|
| 1223 | + $thatConstraintAnnotations = []; |
|
| 1225 | 1224 | $this->model->GetAssociationAnnotations( |
| 1226 | 1225 | $thatPrimary, |
| 1227 | 1226 | $thatAssociationAnnotations, |
@@ -1335,8 +1334,8 @@ discard block |
||
| 1335 | 1334 | ); |
| 1336 | 1335 | |
| 1337 | 1336 | $thatAssociationSetAnnotations = []; |
| 1338 | - $thatEnd1Annotations =[]; |
|
| 1339 | - $thatEnd2Annotations =[]; |
|
| 1337 | + $thatEnd1Annotations = []; |
|
| 1338 | + $thatEnd2Annotations = []; |
|
| 1340 | 1339 | $this->model->GetAssociationSetAnnotations( |
| 1341 | 1340 | $thatEntitySet, |
| 1342 | 1341 | $thatNavprop, |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | { |
| 35 | 35 | /** @var EdmModelVisitor $this */ |
| 36 | 36 | switch ($element->getSchemaElementKind()) { |
| 37 | - case SchemaElementKind::Function(): |
|
| 37 | + case SchemaElementKind::Function (): |
|
| 38 | 38 | assert($element instanceof IFunction); |
| 39 | 39 | $this->processFunction($element); |
| 40 | 40 | break; |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | { |
| 35 | 35 | /** @var EdmModelVisitor $this */ |
| 36 | 36 | switch ($element->getSchemaElementKind()) { |
| 37 | - case SchemaElementKind::Function(): |
|
| 37 | + case SchemaElementKind::function(): |
|
| 38 | 38 | assert($element instanceof IFunction); |
| 39 | 39 | $this->processFunction($element); |
| 40 | 40 | break; |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | public function visitAnnotations(iterable $annotations): void |
| 29 | 29 | { |
| 30 | 30 | /** @var EdmModelVisitor $this */ |
| 31 | - self::visitCollection($annotations, [$this,'visitAnnotation']); |
|
| 31 | + self::visitCollection($annotations, [$this, 'visitAnnotation']); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | case $element instanceof IProperty: |
| 54 | 54 | assert($element instanceof IProperty); |
| 55 | 55 | $type = $element->getType(); |
| 56 | - return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) :''); |
|
| 56 | + return $element->getName() ?? '' . ':' . ($type !== null ? self::ToTraceString($type) : ''); |
|
| 57 | 57 | case $element instanceof IEntityReferenceType: |
| 58 | 58 | assert($element instanceof IEntityReferenceType); |
| 59 | 59 | return strval(TypeKind::EntityReference()->getKey()) . '(' . ($element->getEntityType() !== null ? |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | $sb, |
| 189 | 189 | EdmConstants::FacetName_Srid, |
| 190 | 190 | null !== $type->getSpatialReferenceIdentifier() |
| 191 | - ? $type->getSpatialReferenceIdentifier(): EdmConstants::Value_SridVariable |
|
| 191 | + ? $type->getSpatialReferenceIdentifier() : EdmConstants::Value_SridVariable |
|
| 192 | 192 | ); |
| 193 | 193 | return $sb; |
| 194 | 194 | } |
@@ -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 | ); |