oauth2-server/src/Entities/Interfaces/UserEntityInterface.php

13 lines
204 B
PHP
Raw Normal View History

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