| 1 | <?php |
||
| 20 | class PasswordTokenClearCommand extends Command |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * The name and signature of the console command. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $signature = 'fort:reset:clear {broker? : The name of the password broker}'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * The console command description. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $description = 'Flush expired password reset tokens'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Execute the console command. |
||
| 38 | * |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | public function handle() |
||
| 47 | } |
||
| 48 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.