Файл: app/Console/Commands/ClearRecentsCommand.php
Строк: 37
<?php
namespace AppConsoleCommands;
use AppModelsRecent;
use IlluminateConsoleCommand;
class ClearRecentsCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'cron:clear-recents';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear the `recents` database table';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
Recent::truncate();
return 0;
}
}