use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class StoreListUpdatesCommand extends StoreCommand
implements CompletionAwareInterface
{ /**
* {@inheritdoc}
*/
public function completeOptionValues($optionName, CompletionContext
$context) { if ($optionName === 'shopware-version'
) { return $this->
completeShopwareVersions($context->
getCurrentWord());
} return [];
} /**
* {@inheritdoc}
*/
public function completeArgumentValues($argumentName, CompletionContext
$context) { return [];
}