1 | <?php |
||
8 | class CleanCommand extends Command |
||
9 | { |
||
10 | /** |
||
11 | * The console command name. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'schedulelogger:clean'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Clean up old records from the schedule log.'; |
||
23 | |||
24 | public function handle() |
||
38 | } |
||
39 |