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;
use Nikaia\TranslationSheet\Puller;
class Pull extends Command
{
protected $signature = 'translation_sheet:pull';
protected $description = 'Pull translations from spreadsheet and override local languages files';
public function handle(Puller $puller)
$puller->withOutput($this->output)->pull();
}