Skip to content

Commit

Permalink
siiiiggghhh
Browse files Browse the repository at this point in the history
  • Loading branch information
dcarbone committed Dec 21, 2024
1 parent 6b12d8c commit e627fb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion template/versions/types/class_xhtml.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function xmlSerialize(null|<?php echo PHPFHIR_CLASSNAME_XML_WRITER; ?> $x
$xw->startDocument();
}
if (null === $config) {
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>)()->getConfig()->getSerializeConfig();
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>())->getConfig()->getSerializeConfig();
}
if (!$xw->isRootOpen()) {
$rootOpened = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function xmlSerialize(null|<?php echo PHPFHIR_CLASSNAME_XML_WRITER; ?> $x
$xw->startDocument();
}
if (null === $config) {
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>)()->getConfig()->getSerializeConfig();
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>())->getConfig()->getSerializeConfig();
}
if (!$xw->isRootOpen()) {
$openedRoot = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function xmlSerialize(null|<?php echo PHPFHIR_CLASSNAME_XML_WRITER; ?> $x
$xw->startDocument();
}
if (null === $config) {
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>)()->getConfig()->getSerializeConfig();
$config = (new <?php echo PHPFHIR_CLASSNAME_VERSION; ?>())->getConfig()->getSerializeConfig();
}
<?php foreach($localProperties as $property) : ?>
if (null !== ($v = $this-><?php echo $property->getGetterName(); ?>())) {
Expand Down

0 comments on commit e627fb5

Please sign in to comment.