From 2b361231a046425a7456fd195373d46c56afaf91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20Tu=CC=88rich?= Date: Fri, 13 Sep 2024 14:03:44 +0200 Subject: [PATCH] Fix lint error --- src/Saml2/Response.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Saml2/Response.php b/src/Saml2/Response.php index d716ca5d..8c45b30e 100644 --- a/src/Saml2/Response.php +++ b/src/Saml2/Response.php @@ -1166,7 +1166,7 @@ protected function decryptAssertion(\DomNode $dom) // check if the decrypted assertion contains an encryptedID $encryptedID = $decrypted->getElementsByTagName('EncryptedID')->item(0); - if($encryptedID) { + if ($encryptedID) { // decrypt the encryptedID $this->encryptedNameId = true; $this->decryptAssertion($encryptedID);