oauth2-server/src/League/OAuth2/Server/Storage/ScopeInterface.php

44 lines
1.1 KiB
PHP
Raw Normal View History

2012-12-29 01:42:16 +05:30
<?php
2013-02-14 01:29:08 +05:30
/**
* OAuth 2.0 Scope storage interface
*
* @package php-loep/oauth2-server
2013-02-14 01:29:08 +05:30
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
2013-02-14 01:29:08 +05:30
* @license http://mit-license.org/
2013-05-09 00:00:53 +05:30
* @link http://github.com/php-loep/oauth2-server
2013-02-14 01:29:08 +05:30
*/
2012-12-29 01:42:16 +05:30
namespace League\OAuth2\Server\Storage;
2012-12-29 01:42:16 +05:30
interface ScopeInterface
{
2013-01-29 19:55:49 +05:30
/**
* Return information about a scope
*
* Example SQL query:
*
* <code>
* SELECT * FROM oauth_scopes WHERE scope = :scope
2013-01-29 19:55:49 +05:30
* </code>
*
* Response:
*
* <code>
* Array
* (
* [id] => (int) The scope's ID
* [scope] => (string) The scope itself
2013-01-29 19:55:49 +05:30
* [name] => (string) The scope's name
* [description] => (string) The scope's description
* )
* </code>
*
* @param string $scope The scope
* @param string $clientId The client ID
* @param string $grantType The grant type used in the request
2013-01-29 19:55:49 +05:30
* @return bool|array If the scope doesn't exist return false
*/
public function getScope($scope, $clientId = null, $grantType = null);
2012-12-29 01:42:16 +05:30
}