mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-18 20:04:28 +00:00
Cleanup in src/, adding namespaces, removing php closing tag and general code cleanup
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Moserware\Numerics;
|
||||
<?php namespace Moserware\Skills\Numerics;
|
||||
|
||||
// The whole purpose of this class is to make the code for the SkillCalculator(s)
|
||||
// look a little cleaner
|
||||
|
||||
use Exception;
|
||||
|
||||
class Range
|
||||
{
|
||||
private $_min;
|
||||
@ -57,6 +57,4 @@ class Range
|
||||
{
|
||||
return ($this->_min <= $value) && ($value <= $this->_max);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
}
|
Reference in New Issue
Block a user