*/ class VersionCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'cachet:version'; /** * The console command description. * * @var string */ protected $description = 'Display the version of Cachet'; /** * Execute the console command. * * @return void */ public function handle() { $this->info('Cachet '.CACHET_VERSION.' is installed ⚡'); } }