PHP8.3 style overrides added

This commit is contained in:
2025-01-28 09:20:03 +00:00
parent 22002891c5
commit e2620fde53
19 changed files with 35 additions and 0 deletions

View File

@ -10,6 +10,7 @@ class ScheduleLoop extends Schedule
{
}
#[\Override]
public function visit(int $depth = -1, int $maxDepth = 0): float
{
$delta = $this->scheduleToLoop->visit($depth + 1, $maxDepth);

View File

@ -13,6 +13,7 @@ class ScheduleSequence extends Schedule
{
}
#[\Override]
public function visit(int $depth = -1, int $maxDepth = 0): float
{
$maxDelta = 0;

View File

@ -10,6 +10,7 @@ class ScheduleStep extends Schedule
{
}
#[\Override]
public function visit(int $depth = -1, int $maxDepth = 0): float
{
return $this->factor->updateMessageIndex($this->index);