Files
trueskill/src/FactorGraphs/Message.php

28 lines
475 B
PHP
Raw Normal View History

2022-07-05 15:33:34 +02:00
<?php namespace DNW\Skills\FactorGraphs;
class Message
{
private $_name;
private $_value;
public function __construct($value = null, $name = null)
{
$this->_name = $name;
$this->_value = $value;
}
public function getValue()
{
return $this->_value;
}
public function setValue($value)
{
$this->_value = $value;
}
public function __toString()
{
return (string)$this->_name;
}
}