Added UserEntityInterface

This commit is contained in:
Alex Bilbie 2015-04-05 21:13:04 +01:00
parent 61ab070692
commit e88d802918

View File

@ -0,0 +1,12 @@
<?php
namespace League\OAuth2\Server\Entities\Interfaces;
interface UserEntityInterface
{
/**
* Return the user's identifier
* @return mixed
*/
public function getIdentifier();
}