oauth2-server/src/Entities/UserEntityInterface.php

21 lines
407 B
PHP
Raw Normal View History

2015-04-05 21:13:04 +01:00
<?php
2016-04-17 13:06:05 +01:00
/**
* @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) Alex Bilbie
* @license http://mit-license.org/
*
* @link https://github.com/thephpleague/oauth2-server
*/
2015-04-05 21:13:04 +01:00
namespace League\OAuth2\Server\Entities;
2015-04-05 21:13:04 +01:00
interface UserEntityInterface
{
/**
2016-02-19 18:09:39 -05:00
* Return the user's identifier.
*
2015-04-05 21:13:04 +01:00
* @return mixed
*/
public function getIdentifier();
}