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