PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
/
Mapper
/
Editing: ThreedsPaymentMapper.php
<?php namespace Iyzipay\Model\Mapper; use Iyzipay\Model\ThreedsPayment; class ThreedsPaymentMapper extends PaymentResourceMapper { public static function create($rawResult = null) { return new ThreedsPaymentMapper($rawResult); } public function mapThreedsPaymentFrom(ThreedsPayment $auth, $jsonObject) { parent::mapPaymentResourceFrom($auth, $jsonObject); return $auth; } public function mapThreedsPayment(ThreedsPayment $auth) { return $this->mapThreedsPaymentFrom($auth, $this->jsonObject); } }
SAVE
CANCEL