Created
March 5, 2018 08:11
-
-
Save michael34435/f4e001cf15f1b50017ba8e1168ccbd86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getAuthIdentifierName() | |
{ | |
return 'id'; | |
} | |
public function getAuthIdentifier() | |
{ | |
return $this->id; | |
} | |
public function getAuthPassword() | |
{ | |
return; | |
} | |
public function getRememberToken() | |
{ | |
return; | |
} | |
public function setRememberToken($value) | |
{ | |
return; | |
} | |
public function getRememberTokenName() | |
{ | |
return; | |
} | |
public function getJWTIdentifier() | |
{ | |
return $this->getKey(); | |
} | |
public function getJWTCustomClaims() | |
{ | |
return []; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment