PATH:
home
/
lab2454c
/
bullionmils.com
/
wp-content
/
plugins
/
copy-delete-posts
/
analyst
/
src
/
Contracts
<?php namespace Analyst\Contracts; use Analyst\ApiResponse; interface HttpClientContract { /** * Make an http request * * @param $method * @param $url * @param $body * @param $headers * @return ApiResponse */ public function request($method, $url, $body, $headers); /** * Must return `true` if client is supported * * @return bool */ public static function hasSupport(); }
[-] RequestContract.php
[edit]
[+]
..
[-] AnalystContract.php
[edit]
[-] CacheContract.php
[edit]
[-] HttpClientContract.php
[edit]
[-] TrackerContract.php
[edit]
[-] RequestorContract.php
[edit]