File "WorkflowNode.php"

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

<?php declare(strict_types = 1);

namespace MailPoet\Automation\Engine\Validation\WorkflowGraph;

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


use MailPoet\Automation\Engine\Data\Step;

class WorkflowNode {
  /** @var Step */
  private $step;

  /** @var array */
  private $parents;

  /* @param Step[] $parents */
  public function __construct(
    Step $step,
    array $parents
  ) {
    $this->step = $step;
    $this->parents = $parents;
  }

  public function getStep(): Step {
    return $this->step;
  }

  /** @return Step[] */
  public function getParents(): array {
    return $this->parents;
  }
}