Submit
Path:
~
/
home
/
getwphos
/
public_html
/
sdp
/
wp-content
/
plugins
/
enhanced-text-widget
/
analyst
/
src
/
Contracts
/
File Content:
RequestorContract.php
<?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 = []); }
Submit
FILE
FOLDER
Name
Size
Permission
Action
AnalystContract.php
169 bytes
0644
CacheContract.php
667 bytes
0644
HttpClientContract.php
404 bytes
0644
RequestContract.php
339 bytes
0644
RequestorContract.php
670 bytes
0644
TrackerContract.php
1256 bytes
0644
N4ST4R_ID | Naxtarrr