@@ -31,14 +31,14 @@ enum TypeKindEnum: string
31
31
32
32
// complex types
33
33
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 ' ;
39
39
case RESOURCE_CONTAINER = 'ResourceContainer ' ;
40
- case RESOURCE_INLINE = 'Resource.Inline ' ;
41
- case QUANTITY = 'Quantity ' ;
40
+ case RESOURCE_INLINE = 'Resource.Inline ' ;
41
+ case QUANTITY = 'Quantity ' ;
42
42
43
43
// this indicates a type that is an immediate child of a resource and not used elsewhere
44
44
case RESOURCE_COMPONENT = 'resource_component ' ;
@@ -83,6 +83,8 @@ public function isContainer(): bool
83
83
84
84
private static function _containerTypeStrings (): array
85
85
{
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 );
87
89
}
88
90
}
0 commit comments