1 | <?php |
||
15 | class TextsCommand extends Command |
||
16 | { |
||
17 | /** |
||
18 | * The console command name. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $signature = 'multilang:texts |
||
23 | {--lang= : The lang to show} |
||
24 | {--scope= : The scope to show} |
||
25 | '; |
||
26 | |||
27 | /** |
||
28 | * The console command description. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $description = 'Show multilang texts and translations.'; |
||
33 | |||
34 | /** |
||
35 | * Execute the console command. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | public function handle() |
||
65 | } |
||
66 |