JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "RefundMapper.php"
Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/src/Iyzipay/Model/Mapper/RefundMapper.php
File size: 513 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Iyzipay\Model\Mapper;
use Iyzipay\Model\Refund;
class RefundMapper extends RefundResourceMapper
{
public static function create($rawResult = null)
{
return new RefundMapper($rawResult);
}
public function mapRefundFrom(Refund $refund, $jsonObject)
{
parent::mapRefundResourceFrom($refund, $jsonObject);
return $refund;
}
public function mapRefund(Refund $refund)
{
return $this->mapRefundFrom($refund, $this->jsonObject);
}
}