PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Request
/
Editing: RetrievePayWithIyzicoRequest.php
<?php namespace Iyzipay\Request; use Iyzipay\JsonBuilder; use Iyzipay\Request; use Iyzipay\RequestStringBuilder; class RetrievePayWithIyzicoRequest extends Request { private $token; public function getToken() { return $this->token; } public function setToken($token) { $this->token = $token; } public function getJsonObject() { return JsonBuilder::fromJsonObject(parent::getJsonObject()) ->add("token", $this->getToken()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->appendSuper(parent::toPKIRequestString()) ->append("token", $this->getToken()) ->getRequestString(); } }
SAVE
CANCEL