🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:12:10 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Automation
/
Engine
/
Data
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Automation/Engine/Data
🔄 Refresh
✏️
Editing: NextStep.php
Writable
<?php declare(strict_types = 1); namespace MailPoet\Automation\Engine\Data; if (!defined('ABSPATH')) exit; class NextStep { /** @var string|null */ protected $id; public function __construct( ?string $id ) { $this->id = $id; } public function getId(): ?string { return $this->id; } public function toArray(): array { return [ 'id' => $this->id, ]; } public static function fromArray(array $data): self { return new self($data['id']); } }
💾 Save Changes
❌ Cancel