| 1 | <?php |
||
| 11 | class CleanActivityLogCommand extends Command |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The console command name. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $signature = 'activitylog:clean'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * The console command description. |
||
| 22 | * |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $description = 'Clean up old records from the activity log.'; |
||
| 26 | public function handle() |
||
| 32 | } |