common\Locale::setLocale PHP Method

setLocale() protected method

protected setLocale ( string $locale ) : self
$locale string
return self
    protected function setLocale($locale)
    {
        if (!array_key_exists($locale, $this->getPossibleLanguages())) {
            throw new InvalidArgumentException('Invalid language');
        }
        $this->locale = $locale;
        return $this;
    }