for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Freddymu\ChuckNorrisJokes\Console;
use Freddymu\ChuckNorrisJokes\Facades\ChuckNorris;
use Illuminate\Console\Command;
class ChuckNorrisJoke extends Command
{
protected $signature = 'chuck-norris';
protected $description = 'Output a funny Chuck Norris joke.';
public function handle()
$this->info(ChuckNorris::getRandomJoke());
}