$value) { if (in_array($key, $this->hidden)) { continue; } switch ($key) { case 'id': $this->id = $value; break; case 'name': $this->name = $value; break; case 'email': $this->email = $value; break; case 'status': $this->status = $value; break; default: break; } } return $this; } /** * Get the name of the unique identifier for the user. * * @return string */ public function getAuthIdentifierName() { return 'id'; } /** * Get the unique identifier for the user. * * @return mixed */ public function getAuthIdentifier() { return $this->id; } /** * Get the password for the user. * * @return string */ public function getAuthPassword() { // TODO: Implement getAuthPassword() method. } /** * Get the token value for the "remember me" session. * * @return string */ public function getRememberToken() { // TODO: Implement getRememberToken() method. } /** * Set the token value for the "remember me" session. * * @param string $value * @return void */ public function setRememberToken($value) { // TODO: Implement setRememberToken() method. } /** * Get the column name for the "remember me" token. * * @return string */ public function getRememberTokenName() { // TODO: Implement getRememberTokenName() method. } }