2022-07-05 15:55:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace DNW\Skills\FactorGraphs;
|
2016-05-24 14:10:39 +02:00
|
|
|
|
|
|
|
class ScheduleStep extends Schedule
|
|
|
|
{
|
2022-07-05 16:21:06 +02:00
|
|
|
public function __construct($name, private readonly Factor $_factor, private $_index)
|
2016-05-24 14:10:39 +02:00
|
|
|
{
|
|
|
|
parent::__construct($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function visit($depth = -1, $maxDepth = 0)
|
|
|
|
{
|
2016-05-24 16:31:21 +02:00
|
|
|
$currentFactor = $this->_factor;
|
2022-07-05 15:55:47 +02:00
|
|
|
|
2022-07-05 16:21:06 +02:00
|
|
|
return $currentFactor->updateMessageIndex($this->_index);
|
2016-05-24 14:10:39 +02:00
|
|
|
}
|
2022-07-05 15:55:47 +02:00
|
|
|
}
|