Completed
Branch release-4-alpha (bbd4f3)
by Tim
01:59
created
src/SAML2/HTTPArtifact.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         }
41 41
 
42 42
         $generatedId = pack('H*', bin2hex(openssl_random_pseudo_bytes(20)));
43
-        $artifact = base64_encode("\x00\x04\x00\x00".sha1($message->getIssuer(), true).$generatedId) ;
43
+        $artifact = base64_encode("\x00\x04\x00\x00".sha1($message->getIssuer(), true).$generatedId);
44 44
         $artifactData = $message->toUnsignedXML();
45 45
         $artifactDataString = $artifactData->ownerDocument->saveXML($artifactData);
46 46
 
Please login to merge, or discard this patch.
src/SAML2/SOAPClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
         // There is a fault element but we haven't found out what the fault string is
240 240
         $soapFaultString = "Unknown fault string found";
241 241
         // find out the fault string
242
-        $faultStringElement =   Utils::xpQuery($soapFaultElement, './soap-env:faultstring') ;
242
+        $faultStringElement = Utils::xpQuery($soapFaultElement, './soap-env:faultstring');
243 243
         if (!empty($faultStringElement)) {
244 244
             return $faultStringElement[0]->textContent;
245 245
         }
Please login to merge, or discard this patch.