container = $container; parent::__construct('test:command'); } public function configure() { parent::configure(); $this->setDescription('Hyperf Demo Command'); } public function handle() { VoteStatisticsCache::getInstance()->updateVoteCache(15); } }