2016-02-18 10:47:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace LeagueTests\Stubs;
|
|
|
|
|
|
|
|
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
|
|
|
|
|
|
|
class UserEntity implements UserEntityInterface
|
|
|
|
{
|
|
|
|
public function getIdentifier()
|
|
|
|
{
|
|
|
|
return 123;
|
|
|
|
}
|
2016-02-19 18:09:39 -05:00
|
|
|
}
|