From 34ec35019b2bec0cd2507c9ace83e268d5e58263 Mon Sep 17 00:00:00 2001
From: sephster <andrew@noexceptions.io>
Date: Thu, 8 Nov 2018 13:10:22 +0000
Subject: [PATCH] Remove additional whitespace

---
 src/AuthorizationServer.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/AuthorizationServer.php b/src/AuthorizationServer.php
index 416421ec..df079b70 100644
--- a/src/AuthorizationServer.php
+++ b/src/AuthorizationServer.php
@@ -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;
     }