*/ class BeaconCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'cachet:beacon'; /** * The console command description. * * @var string */ protected $description = 'Communicate with the Cachet Beacon server.'; /** * Execute the console command. * * @return void */ public function fire() { dispatch(new SendBeaconJob()); } }