![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CampaignBundle/Executioner/Result/ |
<?php namespace Mautic\CampaignBundle\Executioner\Result; class Counter { /** * @param int $eventCount * @param int $evaluated * @param int $executed * @param int $totalEvaluated * @param int $totalExecuted * @param int $totalScheduled */ public function __construct( private $eventCount = 0, private $evaluated = 0, private $executed = 0, private $totalEvaluated = 0, private $totalExecuted = 0, private $totalScheduled = 0 ) { } /** * @return int */ public function getEventCount() { return $this->eventCount; } /** * @param int $step */ public function advanceEventCount($step = 1): void { $this->eventCount += $step; } /** * @return int */ public function getEvaluated() { return $this->evaluated; } /** * @param int $step */ public function advanceEvaluated($step = 1): void { $this->evaluated += $step; $this->totalEvaluated += $step; } /** * @return int */ public function getExecuted() { return $this->executed; } /** * @param int $step */ public function advanceExecuted($step = 1): void { $this->executed += $step; $this->totalExecuted += $step; } /** * Includes all child events (conditions, etc) evaluated. * * @return int */ public function getTotalEvaluated() { return $this->totalEvaluated; } /** * @param int $step */ public function advanceTotalEvaluated($step = 1): void { $this->totalEvaluated += $step; } /** * Includes all child events (conditions, etc) executed. * * @return int */ public function getTotalExecuted() { return $this->totalExecuted; } /** * @param int $step */ public function advanceTotalExecuted($step = 1): void { $this->totalExecuted += $step; } /** * @return int */ public function getTotalScheduled() { return $this->totalScheduled; } /** * @param int $step */ public function advanceTotalScheduled($step = 1): void { $this->totalScheduled += $step; } }