setDescription('Interact with your Stud.IP in a read-eval-print loop (REPL).'); } /** * @SuppressWarnings(PHPMD.StaticAccess) * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ protected function execute(InputInterface $input, OutputInterface $output): int { $config = Configuration::fromInput($input); $config->setUpdateCheck(Checker::NEVER); $config->setDefaultIncludes([__DIR__ . '/../../studip_cli_env.inc.php']); $shell = new Shell($config); return $shell->run(); } }