for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Commands;
use LaravelZero\Framework\Commands\Command;
class FakeDefaultCommand extends Command
{
protected $name = 'fake:default';
public function handle()
$this->info('Foo bar');
}