mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
13 lines
223 B
PHP
13 lines
223 B
PHP
<?php
|
|
|
|
namespace LeagueTests\Stubs;
|
|
|
|
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
|
|
|
class UserEntity implements UserEntityInterface
|
|
{
|
|
public function getIdentifier()
|
|
{
|
|
return 123;
|
|
}
|
|
} |