PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Editing: HttpClient.php
<?php namespace Iyzipay; interface HttpClient { public function get($url); public function getV2($url, $header); public function post($url, $header, $content); public function put($url, $header, $content); public function delete($url, $header, $content = null); }
SAVE
CANCEL