first commit

This commit is contained in:
Roman Pyrih
2025-07-11 12:34:24 +02:00
commit 296b13244b
10181 changed files with 3916595 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
namespace Analyst\Contracts;
interface RequestorContract
{
/**
* Get request
*
* @param $url
* @param array $headers
* @return mixed
*/
public function get($url, $headers = []);
/**
* Post request
*
* @param $url
* @param $body
* @param array $headers
* @return mixed
*/
public function post($url, $body = [], $headers = []);
/**
* Put request
*
* @param $url
* @param $body
* @param array $headers
* @return mixed
*/
public function put($url, $body = [], $headers = []);
/**
* Delete request
*
* @param $url
* @param array $headers
* @return mixed
*/
public function delete($url, $headers = []);
}