2016-02-18 16:17:59 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace LeagueTests\Stubs;
|
|
|
|
|
|
|
|
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
|
|
|
|
|
|
|
class UserEntity implements UserEntityInterface
|
|
|
|
{
|
|
|
|
public function getIdentifier()
|
|
|
|
{
|
|
|
|
return 123;
|
|
|
|
}
|
2016-02-20 04:39:39 +05:30
|
|
|
}
|