Files
trueskill/src/FactorGraphs/Message.php

26 lines
448 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills\FactorGraphs;
2022-07-05 16:21:06 +02:00
class Message implements \Stringable
{
2023-08-02 10:10:57 +00:00
public function __construct(private ?object $value = null, private ?string $name = null)
{
}
2023-08-02 13:29:14 +00:00
public function getValue(): ?object
{
return $this->value;
}
2023-08-02 13:29:14 +00:00
public function setValue(?object $value): void
{
$this->value = $value;
}
2022-07-05 16:21:06 +02:00
public function __toString(): string
{
return $this->name;
}
2022-07-05 15:55:47 +02:00
}