diff --git a/app/models/User.php b/app/models/User.php index e2bcec57..999321b9 100644 --- a/app/models/User.php +++ b/app/models/User.php @@ -1,8 +1,9 @@ password; } + /** + * Get the e-mail address where password reminders are sent. + * + * @return string + */ + public function getReminderEmail() + { + return $this->email; + } + } \ No newline at end of file