mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
Changing Case
This commit is contained in:
parent
31b36f23e7
commit
a3fd22b3dd
8
src/OAuth2/GrantTypeInterface.php
Normal file
8
src/OAuth2/GrantTypeInterface.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace OAuth2;
|
||||
|
||||
interface GrantTypeInterface
|
||||
{
|
||||
public function getIdentifier();
|
||||
}
|
42
src/OAuth2/Server.php
Normal file
42
src/OAuth2/Server.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace OAuth2;
|
||||
|
||||
class Server
|
||||
{
|
||||
protected $scopeDelimeter = ',';
|
||||
|
||||
protected $expiresIn = 3600;
|
||||
|
||||
protected $responseTypes = array(
|
||||
'code'
|
||||
);
|
||||
|
||||
protected $storages = array();
|
||||
|
||||
protected $grantTypes = array();
|
||||
|
||||
public function __construct($storage)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function addGrantType(GrantTypeInterface $grant_type, $identifier = null)
|
||||
{
|
||||
if (is_null($identifier)) {
|
||||
$identifier = $grant_type->getIdentifier();
|
||||
}
|
||||
$this->grantTypes[$identifier] = $grant_type;
|
||||
}
|
||||
|
||||
public function setScopeDelimeter($scope_delimeter)
|
||||
{
|
||||
$this->scopeDelimeter = $scope_delimeter;
|
||||
}
|
||||
|
||||
public function setExpiresIn($expires_in)
|
||||
{
|
||||
$this->expiresIn = $expires_in;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user