/**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName(self::COMMAND_NAME)->setDescription('Convert scientific notation to decimal format')->addArgument(self::NUMBER_ARGUMENT, InputArgument::REQUIRED, 'Scientific value to convert');
 }
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName(self::COMMAND_NAME)->setDescription('Convert number to shortest possible format')->addArgument(self::NUMBER_ARGUMENT, InputArgument::REQUIRED, 'Numeric value to convert');
 }