Stubbed out storage classes

This commit is contained in:
Josh Sherman 2014-10-11 07:40:09 -04:00
parent 4a8378c6c2
commit a834692235
5 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?php
namespace Pickles\OAuth2;
use \League\OAuth2\Server\Entity\SessionEntity;
use \League\OAuth2\Server\Storage\Adapter;
use \League\OAuth2\Server\Storage\ClientInterface;
class ClientStorage extends Adapter implements ClientInterface
{
public function get($client_id, $client_secret = null, $redirect_uri = null, $grant_type = null)
{
}
public function getBySession(SessionEntity $session)
{
}
}