Files
trueskill/src/FactorGraphs/Message.php

32 lines
479 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills\FactorGraphs;
class Message
{
private $_name;
2022-07-05 15:55:47 +02:00
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()
{
2022-07-05 15:55:47 +02:00
return (string) $this->_name;
}
2022-07-05 15:55:47 +02:00
}