for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* rmarchiv.tk
* (c) 2016-2017 by Marcel 'ryg' Hering
*/
namespace App\Console\Commands;
use Illuminate\Console\Command;
class IndexSearch extends Command
{
/**
* The name and signature of the console command.
*
* @var string
protected $signature = 'search:index';
* The console command description.
protected $description = 'Recreate the fuzzysearch index';
* Create a new command instance.
public function __construct()
parent::__construct();
}
* Execute the console command.
* @return mixed
public function handle()