Updated tests

This commit is contained in:
Alex Bilbie
2014-01-16 16:51:06 +00:00
parent 36760a07cc
commit add1aa5949
13 changed files with 805 additions and 18 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace LeagueTests\Stubs;
class StubAbstractServer extends \League\OAuth2\Server\AbstractServer
{
}

View File

@@ -0,0 +1,16 @@
<?php
namespace LeagueTests\Stubs;
class StubAbstractToken extends \League\OAuth2\Server\Entity\AbstractToken
{
public function expire()
{
}
public function save()
{
}
}