1 | <?php |
||
20 | class VerificationTokenClearCommand extends Command |
||
21 | { |
||
22 | /** |
||
23 | * The name and signature of the console command. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $signature = 'fort:verify:clear {broker? : The name of the verification broker}'; |
||
28 | |||
29 | /** |
||
30 | * The console command description. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $description = 'Flush expired verification tokens'; |
||
35 | |||
36 | /** |
||
37 | * Execute the console command. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | public function handle() |
||
47 | } |
||
48 |