9 use Symfony\Component\Console\Input\InputInterface;
10 use Symfony\Component\Console\Output\OutputInterface;
11 use Symfony\Component\Console\Command\Command;
12 use \Magento\Backend\Setup\ConfigOptionsList as BackendConfigOptionsList;
19 private $deploymentConfig;
31 parent::__construct();
41 $this->setName(
'info:adminuri')
42 ->setDescription(
'Displays the Magento Admin URI');
53 . $this->deploymentConfig->get(BackendConfigOptionsList::CONFIG_PATH_BACKEND_FRONTNAME)
56 return \Magento\Framework\Console\Cli::RETURN_SUCCESS;
__construct(\Magento\Framework\App\DeploymentConfig $deploymentConfig)
execute(InputInterface $input, OutputInterface $output)