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

43 lines
1.0 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 lncd/oauth2
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 University of Lincoln
* @license http://mit-license.org/
* @link http://github.com/lncd/oauth2
*/
2012-12-29 01:42:16 +05:30
namespace OAuth2\Storage;
interface ScopeInterface
{
2013-01-29 19:55:49 +05:30
/**
* Return information about a scope
*
* Example SQL query:
*
* <code>
2013-02-19 05:56:28 +05:30
* 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
* [name] => (string) The scope's name
* [description] => (string) The scope's description
* )
* </code>
*
* @param string $scope The scope
* @param string $clientId The client ID
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
}