@@ -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 | ); |
@@ -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 | /** |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | public function getValueKind(): ValueKind |
| 34 | 34 | { |
| 35 | - return ValueKind::Null(); |
|
| 35 | + return ValueKind::null(); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -40,6 +40,6 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | public function getExpressionKind(): ExpressionKind |
| 42 | 42 | { |
| 43 | - return ExpressionKind::Null(); |
|
| 43 | + return ExpressionKind::null(); |
|
| 44 | 44 | } |
| 45 | 45 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | public function __construct() |
| 21 | 21 | { |
| 22 | 22 | $this->lookup[SchemaElementKind::TypeDefinition()->getKey()] = ISchemaType::class; |
| 23 | - $this->lookup[SchemaElementKind::Function()->getKey()] = IFunction::class; |
|
| 23 | + $this->lookup[SchemaElementKind::Function ()->getKey()] = IFunction::class; |
|
| 24 | 24 | $this->lookup[SchemaElementKind::ValueTerm()->getKey()] = IValueTerm::class; |
| 25 | 25 | $this->lookup[SchemaElementKind::EntityContainer()->getKey()] = IEntityContainer::class; |
| 26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | public function __construct() |
| 21 | 21 | { |
| 22 | 22 | $this->lookup[SchemaElementKind::TypeDefinition()->getKey()] = ISchemaType::class; |
| 23 | - $this->lookup[SchemaElementKind::Function()->getKey()] = IFunction::class; |
|
| 23 | + $this->lookup[SchemaElementKind::function()->getKey()] = IFunction::class; |
|
| 24 | 24 | $this->lookup[SchemaElementKind::ValueTerm()->getKey()] = IValueTerm::class; |
| 25 | 25 | $this->lookup[SchemaElementKind::EntityContainer()->getKey()] = IEntityContainer::class; |
| 26 | 26 | } |