📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 13:47:08
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
copy-delete-posts
/
analyst
/
src
/
Contracts
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/copy-delete-posts/analyst/src/Contracts
🔄 Refresh
✏️
Editing: RequestorContract.php
Writable
<?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 = []); }
💾 Save Changes
❌ Cancel