setName('encryption:show-key-storage-root') ->setDescription('Show current key storage root'); } protected function execute(InputInterface $input, OutputInterface $output): int { $currentRoot = $this->util->getKeyStorageRoot(); $rootDescription = $currentRoot !== '' ? $currentRoot : 'default storage location (data/)'; $output->writeln("Current key storage root: $rootDescription"); return 0; } }