Skip to content

Commit

Permalink
Doc: fix return type in LeanUser set methods
Browse files Browse the repository at this point in the history
  • Loading branch information
juvenn committed Oct 26, 2015
1 parent f3301d9 commit e5a4189
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/LeanCloud/LeanUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class LeanUser extends LeanObject {
* Set username
*
* @param string $username
* @return LeanUser
* @return $this
*/
public function setUsername($username) {
$this->set("username", $username);
Expand All @@ -60,7 +60,7 @@ public function setUsername($username) {
* Set email
*
* @param string $email
* @return LeanUser
* @return $this
*/
public function setEmail($email) {
$this->set("email", $email);
Expand All @@ -71,7 +71,7 @@ public function setEmail($email) {
* Set password
*
* @param string $password
* @return LeanUser
* @return $this
*/
public function setPassword($password) {
$this->set("password", $password);
Expand Down

0 comments on commit e5a4189

Please sign in to comment.