First commit of relational example

This commit is contained in:
Alex Bilbie
2014-05-09 10:46:59 +01:00
parent 81e9e7364b
commit c5aee31405
14 changed files with 1254 additions and 1 deletions

View File

@ -0,0 +1,17 @@
<?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()));
}
}