oauth2-server/src/Entities/UserEntityInterface.php

21 lines
407 B
PHP
Raw Normal View History

2015-04-06 01:43:04 +05:30
<?php
2016-04-17 17:36:05 +05:30
/**
* @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-06 01:43:04 +05:30
namespace League\OAuth2\Server\Entities;
2015-04-06 01:43:04 +05:30
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();
}