2015-04-06 01:43:04 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace League\OAuth2\Server\Entities\Interfaces;
|
|
|
|
|
|
|
|
interface UserEntityInterface
|
|
|
|
{
|
|
|
|
/**
|
2016-02-20 04:39:39 +05:30
|
|
|
* Return the user's identifier.
|
|
|
|
*
|
2015-04-06 01:43:04 +05:30
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getIdentifier();
|
|
|
|
}
|