From 4dfce38be4dca1567443ffc539451bee51a95b1b Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Mon, 8 Jan 2024 23:16:07 +0100 Subject: [PATCH] WIP: create fed classes --- src/XML/fed/AbstractFreshnessType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XML/fed/AbstractFreshnessType.php b/src/XML/fed/AbstractFreshnessType.php index 73b3985a..427457ec 100644 --- a/src/XML/fed/AbstractFreshnessType.php +++ b/src/XML/fed/AbstractFreshnessType.php @@ -97,7 +97,7 @@ public static function fromXML(DOMElement $xml): static return new static( intval($xml->textContent), self::getOptionalBooleanAttribute($xml, 'AllowCache', null), - self::getAttributesNSFromXML($xml), + self::getAttributesNSFromXML($xml), ); }