for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Console;
use Helldar\LaravelLangPublisher\Contracts\Processor as ProcessorContract;
use Helldar\LaravelLangPublisher\Services\Processors\Reset as Processor;
use Helldar\LaravelLangPublisher\Support\Actions\Reset as Action;
final class Reset extends BaseCommand
{
protected $signature = 'lang:reset'
. ' {locales?* : Space-separated list of, eg: de tk it}'
. ' {--f|full : Reset files without excluded keys}';
protected $description = 'Resets installed locations.';
protected $action = Action::class;
protected function processor(): ProcessorContract
$this->log('Getting the processor: ' . Processor::class);
return Processor::make()->full($this->hasFull());
}