@@ -69,7 +69,7 @@ |
||
| 69 | 69 | return $assertion; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - $decryptionKeys = $this->privateKeyLoader->loadDecryptionKeys($this->identityProvider, $this->serviceProvider); |
|
| 72 | + $decryptionKeys = $this->privateKeyLoader->loadDecryptionKeys($this->identityProvider, $this->serviceProvider); |
|
| 73 | 73 | |
| 74 | 74 | $decrypted = null; |
| 75 | 75 | foreach ($decryptionKeys as $index => $key) { |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | public function send(AbstractMessage $message): ResponseInterface |
| 104 | 104 | { |
| 105 | 105 | $destination = $this->getRedirectURL($message); |
| 106 | - Utils::getContainer()->getLogger()->debug('Redirect to '.strlen($destination).' byte URL: '.$destination); |
|
| 106 | + Utils::getContainer()->getLogger()->debug('Redirect to ' . strlen($destination) . ' byte URL: ' . $destination); |
|
| 107 | 107 | return new Response(303, ['Location' => $destination]); |
| 108 | 108 | } |
| 109 | 109 | |