Remove additional whitespace

This commit is contained in:
sephster 2018-11-08 13:10:22 +00:00
parent ac818bd921
commit 34ec35019b
No known key found for this signature in database
GPG Key ID: 077754CA23023F4F

View File

@ -103,7 +103,7 @@ class AuthorizationServer implements EmitterAwareInterface
if ($privateKey instanceof CryptKey === false) { if ($privateKey instanceof CryptKey === false) {
$privateKey = new CryptKey($privateKey); $privateKey = new CryptKey($privateKey);
} }
$this->privateKey = $privateKey; $this->privateKey = $privateKey;
$this->encryptionKey = $encryptionKey; $this->encryptionKey = $encryptionKey;
@ -112,13 +112,13 @@ class AuthorizationServer implements EmitterAwareInterface
} else { } else {
$responseTypePrototype = clone $responseTypePrototype; $responseTypePrototype = clone $responseTypePrototype;
} }
if ($responseTypePrototype instanceof AbstractResponseType) { if ($responseTypePrototype instanceof AbstractResponseType) {
$responseTypePrototype->setPrivateKey($this->privateKey); $responseTypePrototype->setPrivateKey($this->privateKey);
} }
$responseTypePrototype->setEncryptionKey($this->encryptionKey); $responseTypePrototype->setEncryptionKey($this->encryptionKey);
$this->responseTypePrototype = $responseTypePrototype; $this->responseTypePrototype = $responseTypePrototype;
} }