remove unnecessary methods from interfaces

This commit is contained in:
Frederik Bosch 2016-03-24 15:01:55 +01:00
parent 7ce31bda87
commit d8e1e0e00e
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. * Returns the registered redirect URI.
* *

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);
} }