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,15 @@
<?php
namespace Pickles\OAuth2;
use \League\OAuth2\Server\Storage\Adapter;
use \League\OAuth2\Server\Storage\ScopeInterface;
class ScopeStorage extends Adapter implements ScopeInterface
{
public function get($scope, $grant_type = null, $client_id = null)
{
}
}