BookStack/app/Console/Commands/ClearViews.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
647 B
PHP

<?php
namespace BookStack\Console\Commands;
use BookStack\Activity\Models\View;
use Illuminate\Console\Command;
class ClearViews extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'bookstack:clear-views';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear all view-counts for all entities';
/**
* Execute the console command.
*/
public function handle(): int
{
View::query()->truncate();
$this->comment('Views cleared');
return 0;
}
}