Files
BookStack/app/Console/Commands/ClearActivity.php
Dan Brown c0620da9f8 Aligned command class code
- Aligned usage of injecting through handler.
- Aligned handler return type.
- Aligned argument and arg desc format.
- Aligned lack of constructor.
2023-05-24 12:59:50 +01:00

34 lines
668 B
PHP

<?php
namespace BookStack\Console\Commands;
use BookStack\Activity\Models\Activity;
use Illuminate\Console\Command;
class ClearActivity extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'bookstack:clear-activity';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear user activity from the system';
/**
* Execute the console command.
*/
public function handle(): int
{
Activity::query()->truncate();
$this->comment('System activity cleared');
return 0;
}
}