trueskill/PHPSkills/FactorGraphs/Message.php

27 lines
409 B
PHP
Raw Normal View History

<?php
namespace Moserware\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 __toString()
{
return $this->_name;
}
}
?>