for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace JustSteveKing\Laravel\ApiToolkit\Console\Commands;
use Illuminate\Console\Command;
class TestCommand extends Command
{
public $signature = 'api-toolkit:test';
public $description = 'A test command.';
public function handle()
$this->comment('API Toolkit working.');
}