File "NextStep.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/lib/Automation/Engine/Data/NextStep.php
File size: 491 bytes
MIME-type: text/x-php
Charset: utf-8

<?php declare(strict_types = 1);

namespace MailPoet\Automation\Engine\Data;

if (!defined('ABSPATH')) exit;


class NextStep {
  /** @var string */
  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']);
  }
}