for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nikaia\TranslationSheet\Commands;
use Illuminate\Console\Command;
class Setup extends Command
{
protected $signature = 'translation_sheet:setup';
protected $description = 'Setup spreadsheet and get it ready to host translations';
public function handle(\Nikaia\TranslationSheet\Setup $setup)
$setup->withOutput($this->output)->run();
}