Devise\Languages\LocaleDetector::update PHP Method

update() public method

Updates the locale stored in this cookie
public update ( string $locale ) : string
$locale string
return string
    public function update($locale)
    {
        $this->Framework->Container->setLocale($locale);
        Cookie::forever($this->cookieKey, $locale);
    }