Skip to content

Commit

Permalink
fixing factory config test
Browse files Browse the repository at this point in the history
  • Loading branch information
dcarbone committed Dec 31, 2024
1 parent 9101b59 commit ac42030
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion template/core/client/class_client.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,4 @@ public function head(string $path, array $queryParams = [], array $curlOpts = []
return $this->_exec(<?php echo $htMethodEnum->getEntityName(); ?>::HEAD, $path, $queryParams, $curlOpts);
}
}
<?php return ob_get_clean();
<?php return ob_get_clean();
4 changes: 0 additions & 4 deletions template/core/tests/test_class_factory_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@

$coreFiles = $config->getCoreFiles();

$constsClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_CLASSNAME_CONSTANTS);
$factConfigClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_CLASSNAME_FACTORY_CONFIG);
$enumFactConfigKeyClass = $coreFiles->getCoreFileByEntityName(PHPFHIR_ENUM_FACTORY_CONFIG_KEY);

ob_start();

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


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

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

0 comments on commit ac42030

Please sign in to comment.