Removed response type interfaces for auth code login + authorize because they were a stupid idea

This commit is contained in:
Alex Bilbie 2016-02-12 11:30:59 +00:00
parent fccb06ed67
commit ac9955b393
2 changed files with 0 additions and 44 deletions

View File

@ -1,22 +0,0 @@
<?php
namespace League\OAuth2\Server\ResponseTypes;
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface;
interface AuthorizeClientResponseTypeInterface
{
/**
* Return a login form
*
*
* @param \League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface $client
* @param ScopeEntityInterface[] $scopes
* @param string $queryString
* @param string $pathToPrivateKey
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function handle(ClientEntityInterface $client, array $scopes, $queryString, $pathToPrivateKey);
}

View File

@ -1,22 +0,0 @@
<?php
namespace League\OAuth2\Server\ResponseTypes;
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface;
interface LoginUserResponseTypeInterface
{
/**
* Return a login form
*
*
* @param \League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface $client
* @param ScopeEntityInterface[] $scopes
* @param string $queryString
* @param string $pathToPrivateKey
*
* @return \Psr\Http\Message\ResponseInterface
*/
public function handle(ClientEntityInterface $client, array $scopes, $queryString, $pathToPrivateKey);
}