. */ namespace FireflyIII\Console\Commands\System; use Illuminate\Console\Command; class OutputVersion extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'firefly-iii:output-version'; /** * The console command description. * * @var string */ protected $description = 'Outputs the Firefly III version'; /** * Execute the console command. */ public function handle(): int { echo config('firefly.version'); return 0; } }