for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Firewall\Vendor\Laravel\Artisan;
use Symfony\Component\Console\Input\InputOption;
class Flush extends Base
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'firewall:cache:clear';
* The console command description.
protected $description = 'Clear the firewall cache.';
* Clear the list.
* @return mixed
public function fire()
app('firewall')->clear();
$this->info('Cache cleared.');
}