. */ declare(strict_types=1); namespace FireflyIII\Console\Commands\System; use Illuminate\Console\Command; class OutputsVersion extends Command { protected $description = 'Outputs the Firefly III version'; protected $signature = 'firefly-iii:output-version'; /** * Execute the console command. */ public function handle(): int { echo config('firefly.version'); return 0; } }