🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:12:52 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
API
/
JSON
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/API/JSON
🔄 Refresh
✏️
Editing: SuccessResponse.php
Writable
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\API\JSON; if (!defined('ABSPATH')) exit; class SuccessResponse extends Response { public $data; public function __construct( $data = [], $meta = [], $status = self::STATUS_OK ) { parent::__construct($status, $meta); $this->data = $data; } public function getData() { if ($this->data === null) return []; return [ 'data' => $this->data, ]; } }
💾 Save Changes
❌ Cancel