| 1 | <?php namespace JobApis\JobsToMail\Jobs\Auth; |
||
| 7 | class SendLoginMessage |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string $email |
||
| 11 | */ |
||
| 12 | protected $email; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Create a new job instance. |
||
| 16 | */ |
||
| 17 | 1 | public function __construct($email = null) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Send user a login token to their email. |
||
| 24 | * |
||
| 25 | * @param UserRepositoryInterface $users |
||
| 26 | * |
||
| 27 | * @return FlashMessage |
||
| 28 | */ |
||
| 29 | 1 | public function handle(UserRepositoryInterface $users) |
|
| 42 | } |
||
| 43 |