Removed responseWith method

This commit is contained in:
Alex Bilbie 2016-02-12 17:51:59 +00:00
parent 174ae490fc
commit 29068dd84c

View File

@ -35,13 +35,6 @@ abstract class AbstractGrant implements GrantTypeInterface
const SCOPE_DELIMITER_STRING = ' '; const SCOPE_DELIMITER_STRING = ' ';
/**
* Grant responds with
*
* @var string
*/
protected $respondsWith = 'token';
/** /**
* @var ServerRequestInterface * @var ServerRequestInterface
*/ */
@ -133,14 +126,6 @@ abstract class AbstractGrant implements GrantTypeInterface
$this->refreshTokenTTL = $refreshTokenTTL; $this->refreshTokenTTL = $refreshTokenTTL;
} }
/**
* {@inheritdoc}
*/
public function respondsWith()
{
return $this->respondsWith;
}
/** /**
* Validate the client * Validate the client
* *