From 6d5660ca67d1b3721a81c6c7f22d1081a148780b Mon Sep 17 00:00:00 2001 From: odain Date: Sat, 15 Nov 2025 21:28:38 +0100 Subject: [PATCH] fix code style --- core/designdocument.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/designdocument.class.inc.php b/core/designdocument.class.inc.php index 0a508b687..5b9207a04 100644 --- a/core/designdocument.class.inc.php +++ b/core/designdocument.class.inc.php @@ -70,7 +70,7 @@ class DesignDocument extends DOMDocument $this->preserveWhiteSpace = true; // otherwise the formatOutput option would have no effect } - public function loadXML(string $source, int $options = 0) : bool + public function loadXML(string $source, int $options = 0): bool { return parent::loadXML($source, $options | LIBXML_BIGLINES); }