oauth2-server/examples/relational/Storage/AuthCodeStorage.php
2014-05-09 10:46:59 +01:00

18 lines
344 B
PHP

<?php
namespace RelationalExample\Storage;
use League\OAuth2\Server\Storage\AuthCodeInterface;
use League\OAuth2\Server\Storage\Adapter;
class AuthCodeStorage extends Adapter implements AuthCodeInterface
{
/**
* {@inheritdoc}
*/
public function get($token)
{
die(var_dump(__METHOD__, func_get_args()));
}
}