oauth2-server/tests/unit/Stubs/StubAbstractGrant.php
2014-09-11 13:58:01 +01:00

19 lines
312 B
PHP

<?php
namespace LeagueTests\Stubs;
class StubAbstractGrant extends \League\OAuth2\Server\Grant\AbstractGrant
{
protected $responseType = 'foobar';
public function completeFlow()
{
return true;
}
public function getAuthorizationServer()
{
return $this->server;
}
}