| 1 | <?php |
||
| 12 | class RefreshCommand extends Command |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The console command name. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $name = 'js-localization:refresh'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The console command description. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $description = "Refresh message cache after changing the config file"; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Execute the console command. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | * @throws ConfigException |
||
| 33 | */ |
||
| 34 | 3 | public function handle() |
|
| 47 | |||
| 48 | 1 | /** |
|
| 49 | * Execute the console command. |
||
| 50 | * Compatibility with previous Laravel 5.x versions. |
||
| 51 | * |
||
| 52 | * @return void |
||
| 53 | * @throws ConfigException |
||
| 54 | */ |
||
| 55 | public function fire() |
||
| 59 | } |
||
| 60 |