관리-도구
편집 파일: 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); }