Last active
October 16, 2017 15:46
-
-
Save ojhaujjwal/9430ad4d575d8a1202d24c749871bce7 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
<?php | |
namespace App\Message; | |
use Bernard\Message; | |
class SendForgotPasswordEmail implements Message | |
{ | |
private $user; | |
public function __construct(User $user) | |
{ | |
$this->user = $user; | |
} | |
public function getUser() | |
{ | |
return $this->user; | |
} | |
public function getName() | |
{ | |
return 'SendForgotPasswordEmail'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment