mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
17 lines
302 B
PHP
17 lines
302 B
PHP
<?php
|
|
|
|
namespace LeagueTests\Stubs;
|
|
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
use League\OAuth2\Server\Entities\UserEntityInterface;
|
|
|
|
class UserEntity implements UserEntityInterface
|
|
{
|
|
use EntityTrait;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->setIdentifier(123);
|
|
}
|
|
}
|