Markette\Gopay\Entity\BasePayment::setCurrency PHP 메소드

setCurrency() 공개 메소드

Sets payment currency
public setCurrency ( string $currency ) : self
$currency string
리턴 self
    public function setCurrency($currency)
    {
        if (!in_array($currency, $this->allowedCurrency)) {
            throw new InvalidArgumentException('Not supported currency "' . $currency . '".');
        }
        $this->currency = (string) $currency;
        return $this;
    }