* @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link http://github.com/php-loep/oauth2-server */ namespace League\OAuth2\Server\Storage; /** * Scope interface */ interface ScopeInterface { /** * Return information about a scope * * Example SQL query: * * * SELECT * FROM oauth_scopes WHERE scope = :scope * * * @param string $scope The scope * @param string $grantType The grant type used in the request (default = "null") * @return bool|array If the scope doesn't exist return false */ public function get($scope, $grantType = null); }