Passed
Push — master ( 61850f...3c9261 )
by Tim
11:05
created
src/ExtendableElementTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
              * @param \SimpleSAML\XML\ElementInterface $elt
60 60
              * @return string|null
61 61
              */
62
-            function (ElementInterface $elt) {
62
+            function(ElementInterface $elt) {
63 63
                 /** @psalm-var \SimpleSAML\XML\Chunk|\SimpleSAML\XML\AbstractElement $elt */
64 64
                 return ($elt instanceof Chunk) ? $elt->getNamespaceURI() : $elt::getNamespaceURI();
65 65
             },
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     /**
124 124
      * @return array|string
125 125
      */
126
-    public function getNamespace(): array|string
126
+    public function getNamespace(): array | string
127 127
     {
128 128
         Assert::true(
129 129
             defined('static::NAMESPACE'),
Please login to merge, or discard this patch.
src/Chunk.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@
 block discarded – undo
195 195
      */
196 196
     public static function getBooleanAttribute(DOMElement $xml, string $name, ?bool $default = null): ?bool
197 197
     {
198
-         try {
198
+            try {
199 199
             $value = self::getAttribute($xml, $name);
200 200
         } catch (MissingAttributeException $e) {
201 201
             if (func_num_args() === 3) {
Please login to merge, or discard this patch.