🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 12:42:34 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
API
/
REST
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/API/REST
🔄 Refresh
✏️
Editing: ErrorResponse.php
Writable
<?php declare(strict_types = 1); namespace MailPoet\API\REST; if (!defined('ABSPATH')) exit; class ErrorResponse extends Response { public function __construct( int $status, string $message, string $code, array $errors = [] ) { parent::__construct(null, $status); $this->set_data([ 'code' => $code, 'message' => $message, 'data' => [ 'status' => $status, 'errors' => $errors, ], ]); } }
💾 Save Changes
❌ Cancel