Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Last active October 16, 2017 15:46
Show Gist options
  • Save ojhaujjwal/9430ad4d575d8a1202d24c749871bce7 to your computer and use it in GitHub Desktop.
Save ojhaujjwal/9430ad4d575d8a1202d24c749871bce7 to your computer and use it in GitHub Desktop.
<?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