📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 12:35:41
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
copy-delete-posts
/
analyst
/
src
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/copy-delete-posts/analyst/src
🔄 Refresh
✏️
Editing: ApiResponse.php
Writable
<?php namespace Analyst; class ApiResponse { /** * Response headers * * @var array */ public $headers; /** * Response body * * @var mixed */ public $body; /** * Status code * * @var string */ public $code; public function __construct($body, $code, $headers) { $this->body = $body; $this->code = $code; $this->headers = $headers; } /** * Whether status code is successful * * @return bool */ public function isSuccess() { return $this->code >= 200 && $this->code < 300; } }
💾 Save Changes
❌ Cancel