app/library/OAuth/UserData/UserDataInterface.php: adding getFirstname() and getLastname()
This commit is contained in:
parent
5d60b0f238
commit
c65020fa43
5 changed files with 83 additions and 4 deletions
|
|
@ -34,6 +34,20 @@ interface UserDataInterface
|
|||
*/
|
||||
public function getName();
|
||||
|
||||
/**
|
||||
* First name
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getFirstname();
|
||||
|
||||
/**
|
||||
* Last name
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLastname();
|
||||
|
||||
/**
|
||||
* Email address
|
||||
*
|
||||
|
|
|
|||
Reference in a new issue