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