for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TopviewDigital\TranslationHelper\Console;
use Illuminate\Console\Command;
class ExportCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $signature = 'trans-helper:export';
* The console command description.
protected $description = 'Export translated terms into language files';
* Install directory.
protected $directory = '';
* Execute the console command.
* @return void
public function handle()
sweep();
export();
}