/** * @return mixed */ public function getCardDataInformation() { if ($this->cardDataInformation == null) { $c = new CardDataInformation($this->transactionManager); $c->getDataByTransaction(TransactionType::Verify, $this->verifyResponse->getVerifyId()); $this->cardDataInformation = $c; } return $this->cardDataInformation; }
/** * @return mixed */ public function getCardDataInformation() { if ($this->cardDataInformation == null) { $c = new CardDataInformation($this->transactionManager); $c->getDataByTransaction(TransactionType::RecurringBill, $this->lastRecurringBillResponse->getRecurringBillId()); $this->cardDataInformation = $c; } return $this->cardDataInformation; }