From ecdf9b2e62227383cc60963c46f0ec37f2c78669 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Thu, 6 Jun 2024 09:59:59 +0200 Subject: [PATCH] Add xsd1999 Namespace --- src/Xmlns.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Xmlns.php b/src/Xmlns.php index 9308990..f7a21fe 100644 --- a/src/Xmlns.php +++ b/src/Xmlns.php @@ -28,6 +28,11 @@ public static function xsd(): XmlXmlns return XmlXmlns::load('http://www.w3.org/2001/XMLSchema'); } + public static function xsd1999(): XmlXmlns + { + return XmlXmlns::load('http://www.w3.org/1999/XMLSchema'); + } + public static function soap11Envelope(): XmlXmlns { return XmlXmlns::load('http://schemas.xmlsoap.org/soap/envelope/');