44 lines
923 B
PHP
Raw Normal View History

2014-05-09 10:46:59 +01:00
<?php
namespace RelationalExample\Storage;
use League\OAuth2\Server\Storage\AuthCodeInterface;
use League\OAuth2\Server\Storage\Adapter;
2014-05-23 16:25:09 +01:00
use League\OAuth2\Server\Entity\AuthCodeEntity;
use League\OAuth2\Server\Entity\ScopeEntity;
2014-05-09 10:46:59 +01:00
class AuthCodeStorage extends Adapter implements AuthCodeInterface
{
/**
* {@inheritdoc}
*/
2014-05-23 16:25:09 +01:00
public function get($code)
{
die(var_dump(__METHOD__, func_get_args()));
}
/**
* {@inheritdoc}
*/
public function getScopes(AuthCodeEntity $token)
{
die(var_dump(__METHOD__, func_get_args()));
}
/**
* {@inheritdoc}
*/
public function associateScope(AuthCodeEntity $token, ScopeEntity $scope)
{
die(var_dump(__METHOD__, func_get_args()));
}
/**
* {@inheritdoc}
*/
public function delete(AuthCodeEntity $token)
2014-05-09 10:46:59 +01:00
{
die(var_dump(__METHOD__, func_get_args()));
}
}