for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\OtherCommands;
use LaravelZero\Framework\Commands\Command;
class FakeOtherCommand extends Command
{
/**
* The name of the console command.
*
* @var string
*/
protected $name = 'fake:other';
* {@inheritdoc}
public function handle(): void
$this->info('Foo bar');
}