mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-27 07:20:18 +05:30
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* OAuth 2.0 Scope storage interface
|
|
*
|
|
* @package php-loep/oauth2-server
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
|
|
* @license http://mit-license.org/
|
|
* @link http://github.com/php-leop/oauth2-server
|
|
*/
|
|
|
|
namespace League\OAuth2\Storage;
|
|
|
|
interface ScopeInterface
|
|
{
|
|
/**
|
|
* Return information about a scope
|
|
*
|
|
* Example SQL query:
|
|
*
|
|
* <code>
|
|
* SELECT * FROM oauth_scopes WHERE scope = $scope
|
|
* </code>
|
|
*
|
|
* Response:
|
|
*
|
|
* <code>
|
|
* Array
|
|
* (
|
|
* [id] => (int) The scope's ID
|
|
* [scope] => (string) The scope itself
|
|
* [name] => (string) The scope's name
|
|
* [description] => (string) The scope's description
|
|
* )
|
|
* </code>
|
|
*
|
|
* @param string $scope The scope
|
|
* @param string $clientId The client ID
|
|
* @return bool|array If the scope doesn't exist return false
|
|
*/
|
|
public function getScope($scope, $clientId = null, $grantType = null);
|
|
}
|