protected function configure()
{
$this
->setDescription('')
->addArgument(
'id',
InputArgument::REQUIRED,//InputArgument::OPTIONAL
'help text'
);
}
protected function execute(InputInterface $input, OutputInterface $output) {
$id = $input->getArgument('id');
}