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

34 lines
822 B
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
*
2014-01-08 21:45:29 +05:30
* @package league/oauth2-server
2013-02-14 01:29:08 +05:30
* @author Alex Bilbie <hello@alexbilbie.com>
2014-03-10 01:04:23 +05:30
* @copyright Copyright (c) Alex Bilbie
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
2014-01-08 21:45:29 +05:30
/**
* Scope interface
*/
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>
*
* @param string $scope The scope
2013-05-14 13:29:53 +05:30
* @param string $grantType The grant type used in the request (default = "null")
2013-01-29 19:55:49 +05:30
* @return bool|array If the scope doesn't exist return false
*/
2014-01-10 18:00:13 +05:30
public function get($scope, $grantType = null);
2012-12-29 01:42:16 +05:30
}