blob: 3a67707ce61c067b6d8d6adf1c9fe5b03a770064 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Auth;
4
5interface CanResetPassword
6{
7 /**
8 * Get the e-mail address where password reset links are sent.
9 *
10 * @return string
11 */
12 public function getEmailForPasswordReset();
13
14 /**
15 * Send the password reset notification.
16 *
17 * @param string $token
18 * @return void
19 */
20 public function sendPasswordResetNotification($token);
21}