Files
trueskill/src/FactorGraphs/Message.php

26 lines
423 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
{
2022-07-05 16:21:06 +02:00
public function __construct(private $_value = null, private $_name = null)
{
}
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
{
2022-07-05 15:55:47 +02:00
return (string) $this->_name;
}
2022-07-05 15:55:47 +02:00
}