Added test stubs

This commit is contained in:
Alex Bilbie
2016-02-18 10:47:59 +00:00
parent fb77a78fb3
commit e808528cc8
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace LeagueTests\Stubs;
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
class UserEntity implements UserEntityInterface
{
public function getIdentifier()
{
return 123;
}
}