@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | return $code; |
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | -if(!function_exists('iterable_to_array')) { |
|
| 51 | +if (!function_exists('iterable_to_array')) { |
|
| 52 | 52 | function iterable_to_array(iterable $it): array |
| 53 | 53 | { |
| 54 | 54 | if (is_array($it)) return $it; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | return $ret; |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | -if(!function_exists('iterable_to_traversable')) { |
|
| 60 | +if (!function_exists('iterable_to_traversable')) { |
|
| 61 | 61 | |
| 62 | 62 | function iterable_to_traversable(iterable $it): Traversable |
| 63 | 63 | { |
@@ -51,7 +51,9 @@ |
||
| 51 | 51 | if(!function_exists('iterable_to_array')) { |
| 52 | 52 | function iterable_to_array(iterable $it): array |
| 53 | 53 | { |
| 54 | - if (is_array($it)) return $it; |
|
| 54 | + if (is_array($it)) { |
|
| 55 | + return $it; |
|
| 56 | + } |
|
| 55 | 57 | $ret = []; |
| 56 | 58 | array_push($ret, ...$it); |
| 57 | 59 | return $ret; |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | /** |
| 46 | 46 | * @var IModel $this |
| 47 | 47 | */ |
| 48 | - return $this->GetAnnotationValue('array', $this, EdmConstants::InternalUri, CsdlConstants::NamespaceAliasAnnotation) ??[]; |
|
| 48 | + return $this->GetAnnotationValue('array', $this, EdmConstants::InternalUri, CsdlConstants::NamespaceAliasAnnotation) ?? []; |
|
| 49 | 49 | } |
| 50 | 50 | /** |
| 51 | 51 | * Sets an annotation value for an EDM element. If the value is null, no annotation is added and an existing |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | /** |
| 281 | 281 | * @var IModel $this |
| 282 | 282 | */ |
| 283 | - return $this->GetAnnotationValue('array', $this, EdmConstants::InternalUri, CsdlConstants::NamespacePrefixAnnotation)??[]; |
|
| 283 | + return $this->GetAnnotationValue('array', $this, EdmConstants::InternalUri, CsdlConstants::NamespacePrefixAnnotation) ?? []; |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | $navigationPropertyMappings = $model->GetAnnotationValue(SplObjectStorage::class, $entitySet, EdmConstants::InternalUri, CsdlConstants::AssociationSetNameAnnotation); |
| 436 | 436 | assert($navigationPropertyMappings instanceof SplObjectStorage || $navigationPropertyMappings === null); |
| 437 | 437 | if ($navigationPropertyMappings !== null && $navigationPropertyMappings->offsetExists($property)) { |
| 438 | - $associationSetName = $navigationPropertyMappings->offsetGet($property) ; |
|
| 438 | + $associationSetName = $navigationPropertyMappings->offsetGet($property); |
|
| 439 | 439 | } else { |
| 440 | 440 | $associationSetName = $model->GetAssociationName($property) . 'Set'; |
| 441 | 441 | } |