mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
13 lines
204 B
PHP
13 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
namespace League\OAuth2\Server\Entities\Interfaces;
|
||
|
|
||
|
interface UserEntityInterface
|
||
|
{
|
||
|
/**
|
||
|
* Return the user's identifier
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getIdentifier();
|
||
|
}
|