From af4381f7de05b21246b1ba1466afa1bb6561be28 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 31 Jan 2013 22:40:41 -0600 Subject: [PATCH] implement remindable interface on default user. --- app/models/User.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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