Files
trueskill/src/FactorGraphs/Message.php

27 lines
426 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 10:10:57 +00:00
}
public function getValue()
{
return $this->value;
}
public function setValue($value)
{
$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
}