PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
/
Mapper
/
Editing: InstallmentInfoMapper.php
<?php namespace Iyzipay\Model\Mapper; use Iyzipay\Model\InstallmentDetail; use Iyzipay\Model\InstallmentInfo; use Iyzipay\Model\InstallmentPrice; class InstallmentInfoMapper extends IyzipayResourceMapper { public static function create($rawResult = null) { return new InstallmentInfoMapper($rawResult); } public function mapInstallmentInfoFrom(InstallmentInfo $installment, $jsonObject) { parent::mapResourceFrom($installment, $jsonObject); if (isset($jsonObject->installmentDetails)) { $installment->setInstallmentDetails($this->mapInstallmentDetails($jsonObject->installmentDetails)); } return $installment; } public function mapInstallmentInfo(InstallmentInfo $installment) { return $this->mapInstallmentInfoFrom($installment, $this->jsonObject); } private function mapInstallmentDetails($installmentDetails) { $details = array(); foreach ($installmentDetails as $index => $installmentDetail) { $detail = new InstallmentDetail(); if (isset($installmentDetail->binNumber)) { $detail->setBinNumber($installmentDetail->binNumber); } if (isset($installmentDetail->price)) { $detail->setPrice($installmentDetail->price); } if (isset($installmentDetail->cardType)) { $detail->setCardType($installmentDetail->cardType); } if (isset($installmentDetail->cardAssociation)) { $detail->setCardAssociation($installmentDetail->cardAssociation); } if (isset($installmentDetail->cardFamilyName)) { $detail->setCardFamilyName($installmentDetail->cardFamilyName); } if (isset($installmentDetail->force3ds)) { $detail->setForce3ds($installmentDetail->force3ds); } if (isset($installmentDetail->bankCode)) { $detail->setBankCode($installmentDetail->bankCode); } if (isset($installmentDetail->bankName)) { $detail->setBankName($installmentDetail->bankName); } if (isset($installmentDetail->forceCvc)) { $detail->setForceCvc($installmentDetail->forceCvc); } if (isset($installmentDetail->commercial)) { $detail->setCommercial($installmentDetail->commercial); } if (isset($installmentDetail->installmentPrices)) { $detail->setInstallmentPrices($this->mapInstallmentPrices($installmentDetail->installmentPrices)); } $details[$index] = $detail; } return $details; } private function mapInstallmentPrices($installmentPrices) { $prices = array(); foreach ($installmentPrices as $index => $installmentPrice) { $price = new InstallmentPrice(); if (isset($installmentPrice->installmentPrice)) { $price->setInstallmentPrice($installmentPrice->installmentPrice); } if (isset($installmentPrice->totalPrice)) { $price->setTotalPrice($installmentPrice->totalPrice); } if (isset($installmentPrice->installmentNumber)) { $price->setInstallmentNumber($installmentPrice->installmentNumber); } $prices[$index] = $price; } return $prices; } }
SAVE
CANCEL