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,16 @@
<?php
namespace League\OAuth2\Server\Entities;
interface AuthCodeEntityInterface extends TokenInterface
{
/**
* @return string
*/
public function getRedirectUri();
/**
* @param string $uri
*/
public function setRedirectUri($uri);
}