Skip to content

Commit ac42030

Browse files
committed
fixing factory config test
1 parent 9101b59 commit ac42030

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

template/core/client/class_client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,4 @@ public function head(string $path, array $queryParams = [], array $curlOpts = []
249249
return $this->_exec(<?php echo $htMethodEnum->getEntityName(); ?>::HEAD, $path, $queryParams, $curlOpts);
250250
}
251251
}
252-
<?php return ob_get_clean();
252+
<?php return ob_get_clean();

template/core/tests/test_class_factory_config.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121

2222
$coreFiles = $config->getCoreFiles();
2323

24-
$constsClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_CLASSNAME_CONSTANTS);
2524
$factConfigClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_CLASSNAME_FACTORY_CONFIG);
26-
$enumFactConfigKeyClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_ENUM_FACTORY_CONFIG_KEY);
2725

2826
ob_start();
2927

@@ -34,9 +32,7 @@
3432
<?php echo $config->getBasePHPFHIRCopyrightComment(false); ?>
3533

3634

37-
use <?php echo $constsClass->getFullyQualifiedName(false); ?>;
3835
use <?php echo $factConfigClass->getFullyQualifiedName(false); ?>;
39-
use <?php echo $enumFactConfigKeyClass->getFullyQualifiedName(false); ?>;
4036
use PHPUnit\Framework\TestCase;
4137

4238
class <?php echo $coreFile->getEntityName(); ?> extends TestCase

0 commit comments

Comments
 (0)