PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
mollie
/
mollie-api-php
/
src
/
HttpAdapter
<?php namespace Mollie\Api\HttpAdapter; interface MollieHttpAdapterInterface { /** * Send a request to the specified Mollie api url. * * @param $httpMethod * @param $url * @param $headers * @param $httpBody * @return \stdClass|null * @throws \Mollie\Api\Exceptions\ApiException */ public function send($httpMethod, $url, $headers, $httpBody); /** * The version number for the underlying http client, if available. * @example Guzzle/6.3 * * @return string|null */ public function versionString(); }
[-] MollieHttpAdapterPickerInterface.php
[edit]
[-] Guzzle6And7RetryMiddlewareFactory.php
[edit]
[-] MollieHttpAdapterPicker.php
[edit]
[+]
..
[-] MollieHttpAdapterInterface.php
[edit]
[-] Guzzle6And7MollieHttpAdapter.php
[edit]
[-] CurlMollieHttpAdapter.php
[edit]