$output->
writeln(''
);
if ($input->
getOption('shop-locale'
)) { if (!
$input->
getOption('no-interaction'
)) { if (!
$output->
confirm('Changing the shops default locale after the fact can be destructive. Are you sure you want to continue', false
)) { $output->
writeln('Aborting due to user input'
);
return (int) Command::SUCCESS;
} } $this->shopConfigurator->
setDefaultLanguage($input->
getOption('shop-locale'
));
$output->
writeln('Successfully changed shop default language'
);
$output->
writeln(''
);
} if ($input->
getOption('shop-currency'
)) { if (!
$input->
getOption('no-interaction'
)) { if (!
$output->
confirm('Changing the shops default currency after the fact can be destructive. Are you sure you want to continue', false
)) { $output->
writeln('Aborting due to user input'
);
return (int) Command::SUCCESS;
} }