| 1 | <?php namespace Modules\Translation\Console;  | 
            ||
| 7 | class BuildTranslationsCacheCommand extends Command  | 
            ||
| 8 | { | 
            ||
| 9 | use DispatchesJobs;  | 
            ||
| 10 | |||
| 11 | protected $name = 'asgard:build:translations';  | 
            ||
| 12 | protected $description = 'Build the translations cache';  | 
            ||
| 13 | /**  | 
            ||
| 14 | * @var  | 
            ||
| 15 | */  | 
            ||
| 16 | private $translation;  | 
            ||
| 17 | |||
| 18 | public function __construct(TranslationRepository $translation)  | 
            ||
| 23 | |||
| 24 | public function fire()  | 
            ||
| 33 | }  | 
            ||
| 34 |