Console\Locale\EnableLocaleCommand::askToEnableTheLocaleForRedirecting PHP Method

askToEnableTheLocaleForRedirecting() private method

    private function askToEnableTheLocaleForRedirecting()
    {
        $enableRedirect = $this->formatter->confirm('Would you like to redirect visitors based on their browser locale to this locale?');
        if (!$enableRedirect) {
            return;
        }
        $this->redirectLocale = array_flip($this->redirectLocale);
        $this->redirectLocale[] = $this->workingLocale;
        $this->settings->set('Core', 'redirect_languages', $this->redirectLocale);
        $this->redirectLocale = array_flip($this->redirectLocale);
    }