Passed
Push — master ( 68bc02...31a3b2 )
by Tim
10:27
created
src/SPID/XML/saml/Issuer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@
 block discarded – undo
47 47
         Assert::same($xml->namespaceURI, Issuer::NS, InvalidDOMElementException::class);
48 48
 
49 49
         /** @psalm-var string $format */
50
-        $format = self::getAttribute($xml, 'Format');
50
+        $format=self::getAttribute($xml, 'Format');
51 51
         Assert::same($format, C::NAMEID_ENTITY, ProtocolViolationException::class);
52 52
 
53 53
         /** @psalm-var string $nameQualifier */
54
-        $nameQualifier = self::getAttribute($xml, 'NameQualifier');
54
+        $nameQualifier=self::getAttribute($xml, 'NameQualifier');
55 55
         return new static($xml->textContent, $nameQualifier);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.