PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
/
Mapper
/
Editing: BasicThreedsPaymentMapper.php
<?php namespace Iyzipay\Model\Mapper; use Iyzipay\Model\BasicThreedsPayment; class BasicThreedsPaymentMapper extends BasicPaymentResourceMapper { public static function create($rawResult = null) { return new BasicThreedsPaymentMapper($rawResult); } public function mapBasicThreedsPaymentFrom(BasicThreedsPayment $auth, $jsonObject) { parent::mapBasicPaymentResourceFrom($auth, $jsonObject); return $auth; } public function mapBasicThreedsPayment(BasicThreedsPayment $auth) { return $this->mapBasicThreedsPaymentFrom($auth, $this->jsonObject); } }
SAVE
CANCEL