Merge branch 'V5-WIP' of https://github.com/frederikbosch/oauth2-server into frederikbosch-V5-WIP

# Conflicts:
#	src/Entities/Interfaces/ClientEntityInterface.php
This commit is contained in:
Alex Bilbie 2016-04-09 13:48:53 +01:00
commit 0fed56a265
2 changed files with 0 additions and 28 deletions

View File

@ -11,13 +11,6 @@ interface ClientEntityInterface
*/ */
public function getIdentifier(); public function getIdentifier();
/**
* Set the client's identifier.
*
* @param $identifier
*/
public function setIdentifier($identifier);
/** /**
* Get the client's name. * Get the client's name.
* *
@ -25,20 +18,6 @@ interface ClientEntityInterface
*/ */
public function getName(); public function getName();
/**
* Set the client's name.
*
* @param string $name
*/
public function setName($name);
/**
* Set the client's redirect uri.
*
* @param string $redirectUri
*/
public function setRedirectUri($redirectUri);
/** /**
* Returns the registered redirect URI (as a string). * Returns the registered redirect URI (as a string).
* *

View File

@ -10,11 +10,4 @@ interface ScopeEntityInterface extends \JsonSerializable
* @return string * @return string
*/ */
public function getIdentifier(); public function getIdentifier();
/**
* Set the scope's identifier.
*
* @param $identifier
*/
public function setIdentifier($identifier);
} }