PHP 8.2.31
Preview: AutomationStatistics.php Size: 1.16 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Automation/Engine/Data/AutomationStatistics.php

<?php declare(strict_types = 1);

namespace MailPoet\Automation\Engine\Data;

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


class AutomationStatistics {

  private $automationId;
  private $versionId;
  private $entered;
  private $inProgress;

  public function __construct(
    int $automationId,
    int $entered = 0,
    int $inProcess = 0,
    ?int $versionId = null
  ) {
    $this->automationId = $automationId;
    $this->entered = $entered;
    $this->inProgress = $inProcess;
    $this->versionId = $versionId;
  }

  public function getAutomationId(): int {
    return $this->automationId;
  }

  public function getVersionId(): ?int {
    return $this->versionId;
  }

  public function getEntered(): int {
    return $this->entered;
  }

  public function getInProgress(): int {
    return $this->inProgress;
  }

  public function getExited(): int {
    return $this->getEntered() - $this->getInProgress();
  }

  public function toArray(): array {
    return [
      'automation_id' => $this->getAutomationId(),
      'totals' => [
        'entered' => $this->getEntered(),
        'in_progress' => $this->getInProgress(),
        'exited' => $this->getExited(),
      ],
    ];
  }
}

Directory Contents

Dirs: 0 × Files: 13

Name Size Perms Modified Actions
5.84 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.06 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.96 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.16 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.07 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.16 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
0 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
491 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.84 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.31 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.83 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
909 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.18 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).