2015-11-21 12:22:14 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
2017-02-26 04:14:18 -05:00
|
|
|
class ClearViews extends Command
|
2015-11-21 12:22:14 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-26 04:14:18 -05:00
|
|
|
protected $signature = 'bookstack:clear-views';
|
2015-11-21 12:22:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-26 04:14:18 -05:00
|
|
|
protected $description = 'Clear all view-counts for all entities.';
|
2015-11-21 12:22:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
\Views::resetAll();
|
2017-02-26 04:14:18 -05:00
|
|
|
$this->comment('Views cleared');
|
2015-11-21 12:22:14 -05:00
|
|
|
}
|
|
|
|
}
|