return $this->IOHelper->
askMultiLineQuestion( new Question("Please provide licence. An empty line will exit the input: \n"
) );
} private function printStartMessage() { $version =
$this->container->
offsetGet('shopware.version'
);
$this->IOHelper->
cls();
$this->IOHelper->
printBanner();
$this->IOHelper->
writeln(sprintf('<info>Welcome to the Shopware %s installer</info>',
$version));
$this->IOHelper->
writeln(''
);
$this->IOHelper->
ask(new Question('Press return to start installation.', \PHP_EOL
));
$this->IOHelper->
cls();
} private function activateResponsiveTheme() { /** @var ThemeService $themeService */
$themeService =
$this->container->
offsetGet('theme.service'
);
$themeService->
activateResponsiveTheme();
}