redis = $redis->getRedisClient(); parent::__construct(); } protected function configure() { $this->setName('hub:jo:reset') ->setDescription('Reset hub\'s job order count') ->setHelp('Reset hub\'s job order count'); } protected function execute(InputInterface $input, OutputInterface $output) { $key = 'hub_jo_count'; $this->redis->del($key); return 0; } }