Markette\Gopay\Service\AbstractService::setLang PHP Method

setLang() public method

Sets payment gateway language
public setLang ( string $lang ) : self
$lang string
return self
    public function setLang($lang)
    {
        if (!in_array($lang, $this->allowedLang)) {
            throw new InvalidArgumentException('Not supported language "' . $lang . '".');
        }
        $this->lang = $lang;
        return $this;
    }