From a4ce1e510ecbfd9042ca3ba11e2849c8c027cc99 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 17 Jan 2016 13:53:18 +0000 Subject: [PATCH] Scope delimiter string is no longer configurable --- src/Server.php | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/src/Server.php b/src/Server.php index 1c46a0eb..535b7d21 100644 --- a/src/Server.php +++ b/src/Server.php @@ -113,26 +113,6 @@ class Server implements EmitterAwareInterface return $this->defaultAccessTokenTTL; } - /** - * Set the delimiter string used to separate scopes in a request - * - * @param string $scopeDelimiterString - */ - public function setScopeDelimiterString($scopeDelimiterString) - { - $this->scopeDelimiterString = $scopeDelimiterString; - } - - /** - * Get the delimiter string used to separate scopes in a request - * - * @return string - */ - protected function getScopeDelimiterString() - { - return $this->scopeDelimiterString; - } - /** * Enable a grant type on the server * @@ -188,8 +168,7 @@ class Server implements EmitterAwareInterface $tokenResponse = $grantType->respondToRequest( $request, $this->grantResponseTypes[$grantType->getIdentifier()], - $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()], - $this->getScopeDelimiterString() + $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] ); } }