Skip to content

Commit 13f73de

Browse files
committed
small cleanup
1 parent 1f2bdb3 commit 13f73de

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/Enum/TypeKindEnum.php

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ enum TypeKindEnum: string
3131

3232
// complex types
3333
case BASE = 'Base';
34-
case EXTENSION = 'Extension';
35-
case ELEMENT = 'Element';
36-
case BINARY = 'Binary';
37-
case BACKBONE_ELEMENT = 'BackboneElement';
38-
case RESOURCE = 'Resource';
34+
case EXTENSION = 'Extension';
35+
case ELEMENT = 'Element';
36+
case BINARY = 'Binary';
37+
case BACKBONE_ELEMENT = 'BackboneElement';
38+
case RESOURCE = 'Resource';
3939
case RESOURCE_CONTAINER = 'ResourceContainer';
40-
case RESOURCE_INLINE = 'Resource.Inline';
41-
case QUANTITY = 'Quantity';
40+
case RESOURCE_INLINE = 'Resource.Inline';
41+
case QUANTITY = 'Quantity';
4242

4343
// this indicates a type that is an immediate child of a resource and not used elsewhere
4444
case RESOURCE_COMPONENT = 'resource_component';
@@ -83,6 +83,8 @@ public function isContainer(): bool
8383

8484
private static function _containerTypeStrings(): array
8585
{
86-
return array_map(function (TypeKindEnum $tk): string { return $tk->value; }, self::CONTAINER_TYPES);
86+
return array_map(function (TypeKindEnum $tk): string {
87+
return $tk->value;
88+
}, self::CONTAINER_TYPES);
8789
}
8890
}

0 commit comments

Comments
 (0)