| 1 | <?php namespace Cerbero\Auth\Jobs; |
||
| 5 | class RecoverJob implements SelfHandling { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @author Andrea Marco Sartori |
||
| 9 | * @var string $email Email input. |
||
| 10 | */ |
||
| 11 | public $email; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Create a new job instance. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function __construct($email) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Execute the job. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function handle() |
||
| 32 | |||
| 33 | } |
||
| 34 |