From ed99739e4e5b75587c6b3b0e80ce940825560a17 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Tue, 26 Dec 2023 17:13:56 +0100 Subject: [PATCH] Remove unnecessary toXML/fromXML --- tests/XML/AbstractElementTest.php | 2 +- tests/XML/Base64ElementTraitTest.php | 2 +- tests/XML/ChunkTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/XML/AbstractElementTest.php b/tests/XML/AbstractElementTest.php index 97906ec..33740eb 100644 --- a/tests/XML/AbstractElementTest.php +++ b/tests/XML/AbstractElementTest.php @@ -54,7 +54,7 @@ public function testMarshalling(): void /** */ - #[Override] + #[\Override] public function testUnmarshalling(): void { $element = Element::fromXML(self::$xmlRepresentation->documentElement); diff --git a/tests/XML/Base64ElementTraitTest.php b/tests/XML/Base64ElementTraitTest.php index 0640fbe..ab80625 100644 --- a/tests/XML/Base64ElementTraitTest.php +++ b/tests/XML/Base64ElementTraitTest.php @@ -57,7 +57,7 @@ public function testMarshalling(): void /** */ - #[Override] + #[\Override] public function testUnmarshalling(): void { $base64Element = Base64Element::fromXML(self::$xmlRepresentation->documentElement); diff --git a/tests/XML/ChunkTest.php b/tests/XML/ChunkTest.php index 153c78f..0ad5afd 100644 --- a/tests/XML/ChunkTest.php +++ b/tests/XML/ChunkTest.php @@ -53,7 +53,7 @@ public function testMarshalling(): void /** */ - #[Override] + #[\Override] public function testUnmarshalling(): void { $element = Chunk::fromXML(self::$xmlRepresentation->documentElement);