File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 31
31
32
32
<?php echo $ config ->getBasePHPFHIRCopyrightComment (true ); ?>
33
33
34
- interface <?php echo PHPFHIR_CLIENT_INTERFACE_CLIENT ; ?>
34
+ interface <?php echo $ coreFile ; ?>
35
35
36
36
{
37
37
/**
@@ -41,6 +41,6 @@ interface <?php echo PHPFHIR_CLIENT_INTERFACE_CLIENT; ?>
41
41
* @return <?php echo $ respClass ->getFullyQualifiedName (true ); ?>
42
42
43
43
*/
44
- public function exec(<?php echo PHPFHIR_CLIENT_CLASSNAME_REQUEST ; ?> $request): <?php echo PHPFHIR_CLIENT_CLASSNAME_RESPONSE ; ?> ;
44
+ public function exec(<?php echo $ reqClass ; ?> $request): <?php echo $ respClass ; ?> ;
45
45
}
46
46
<?php return ob_get_clean ();
Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ public function getName(): string
75
75
return self::NAME;
76
76
}
77
77
78
- public static function getFHIRVersion(): FHIRVersion
78
+ public static function getFHIRVersion(): <?php echo $ fhirVersion ; ?>
79
+
79
80
{
80
81
if (!isset(self::$_fhirVersion)) {
81
82
self::$_fhirVersion = new <?php echo $ fhirVersion ; ?> (
@@ -108,12 +109,14 @@ public function getFHIRGenerationDate(): string
108
109
throw new \BadMethodCallException('Not implemented');
109
110
}
110
111
111
- public function getConfig(): VersionConfigInterface
112
+ public function getConfig(): <?php echo $ versionConfigInterface ; ?>
113
+
112
114
{
113
115
return $this->_config;
114
116
}
115
117
116
- public function getTypeMap(): VersionTypeMapInterface
118
+ public function getTypeMap(): <?php echo $ versionTypeMapInterface ; ?>
119
+
117
120
{
118
121
if (!isset(self::$_typeMap)) {
119
122
self::$_typeMap = new <?php echo $ mockVersionTypeMap ; ?> ();
Original file line number Diff line number Diff line change @@ -59,12 +59,14 @@ public function __construct(null|<?php echo $unserializeConfig; ?> $unserializeC
59
59
$this->_serializeConfig = $serializeConfig ?? new <?php echo $ serializeConfig ; ?> ();
60
60
}
61
61
62
- public function getUnserializeConfig(): UnserializeConfig
62
+ public function getUnserializeConfig(): <?php echo $ unserializeConfig ; ?>
63
+
63
64
{
64
65
return $this->_unserializeConfig;
65
66
}
66
67
67
- public function getSerializeConfig(): SerializeConfig
68
+ public function getSerializeConfig(): <?php echo $ serializeConfig ; ?>
69
+
68
70
{
69
71
return $this->_serializeConfig;
70
72
}
You can’t perform that action at this time.
0 commit comments