Markette\Gopay\Entity\ReturnedPayment::getStatus PHP 메소드

getStatus() 공개 메소드

Receives status of payment from Gopay WS
public getStatus ( ) : array
리턴 array
    public function getStatus()
    {
        if ($this->result !== NULL) {
            return $this->result;
        }
        return $this->result = $this->getGopay()->getSoap()->isPaymentDone((double) $this->valuesToBeVerified['paymentSessionId'], (double) $this->getGopay()->getConfig()->getGopayId(), $this->getVariable(), (int) $this->getSumInCents(), $this->getCurrency(), $this->getProductName(), $this->getGopay()->getConfig()->getGopaySecretKey());
    }