1 | <?php |
||
22 | class ClearResetsCommand extends Command |
||
23 | { |
||
24 | /** |
||
25 | * The name and signature of the console command. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $signature = 'auth:clear-resets {name? : The name of the password broker}'; |
||
30 | |||
31 | /** |
||
32 | * The console command description. |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $description = 'Flush expired password reset tokens'; |
||
37 | |||
38 | /** |
||
39 | * Execute the console command. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | public function fire() |
||
49 | } |
||
50 |