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