Cleanup in src/, adding namespaces, removing php closing tag and general code cleanup

This commit is contained in:
Alexander Liljengård
2016-05-24 14:10:39 +02:00
parent 9f97eb1653
commit 5694a2fb30
64 changed files with 891 additions and 1328 deletions

View File

@ -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);
}
}
?>
}