Cielo\Transaction::getPaymentMethod PHP Method

getPaymentMethod() public method

public getPaymentMethod ( ) : cielo\PaymentMethod
return cielo\PaymentMethod
    public function getPaymentMethod()
    {
        return $this->paymentMethod;
    }

Usage Example

 private function readFormaPagamento(Transaction $transaction)
 {
     $paymentMethod = $transaction->getPaymentMethod();
     $paymentMethod->setIssuer($this->getValue('//c:transacao/c:forma-pagamento/c:bandeira'));
     $paymentMethod->setProduct((int) $this->getValue('//c:transacao/c:forma-pagamento/c:produto'));
     $paymentMethod->setInstallments((int) $this->getValue('//c:transacao/c:forma-pagamento/c:parcelas'));
 }
All Usage Examples Of Cielo\Transaction::getPaymentMethod