for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TarfinLabs\Iys\Commands;
use Illuminate\Console\Command;
class IysCommand extends Command
{
public $signature = 'laravel-iys';
public $description = 'My command';
public function handle()
$this->comment('All done');
}