common\Locale::setLocale PHP Метод

setLocale() защищенный Метод

protected setLocale ( string $locale ) : self
$locale string
Результат self
    protected function setLocale($locale)
    {
        if (!array_key_exists($locale, $this->getPossibleLanguages())) {
            throw new InvalidArgumentException('Invalid language');
        }
        $this->locale = $locale;
        return $this;
    }