mirror of
https://github.com/furyfire/trueskill.git
synced 2025-05-12 06:07:50 +00:00
PHP8.3 style overrides added
This commit is contained in:
@ -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);
|
||||
|
@ -13,6 +13,7 @@ class ScheduleSequence extends Schedule
|
||||
{
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function visit(int $depth = -1, int $maxDepth = 0): float
|
||||
{
|
||||
$maxDelta = 0;
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user