Moved entity interfaces into parent folder. Fixes #504

This commit is contained in:
Alex Bilbie
2016-04-09 15:25:32 +01:00
parent 00518dded7
commit 4eee48ca4e
7 changed files with 11 additions and 11 deletions

View File

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