From 3cb53448c5bde0d3772c000ef3c25cc82dcc58a3 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 29 Jan 2013 16:21:53 +0000 Subject: [PATCH] Anal style fix --- src/OAuth2/AuthServer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OAuth2/AuthServer.php b/src/OAuth2/AuthServer.php index df4eec51..2ff9df46 100644 --- a/src/OAuth2/AuthServer.php +++ b/src/OAuth2/AuthServer.php @@ -80,7 +80,7 @@ class AuthServer } $this->grantTypes[$identifier] = $grantType; - if (! is_null($grantType->getResponseType())) { + if ( ! is_null($grantType->getResponseType())) { $this->responseTypes[] = $grantType->getResponseType(); } }