Passed
Push — master ( e3f58d...7bef46 )
by Tim
27:29 queued 25:34
created
src/SPID/XML/saml/Issuer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,10 +46,10 @@
 block discarded – undo
46 46
         Assert::same($xml->localName, 'Issuer', InvalidDOMElementException::class);
47 47
         Assert::same($xml->namespaceURI, Issuer::NS, InvalidDOMElementException::class);
48 48
 
49
-        $format = self::getAttribute($xml, 'Format');
49
+        $format=self::getAttribute($xml, 'Format');
50 50
         Assert::same($format, C::NAMEID_ENTITY, ProtocolViolationException::class);
51 51
 
52
-        $nameQualifier = self::getAttribute($xml, 'NameQualifier');
52
+        $nameQualifier=self::getAttribute($xml, 'NameQualifier');
53 53
         return new static($xml->textContent, $nameQualifier);
54 54
     }
55 55
 }
Please login to merge, or discard this patch.