Introduce Converter namespace and move Number and Time classes into it

This commit is contained in:
Ben Ramsey
2014-11-08 14:43:09 -05:00
parent 61ba697853
commit cd2d09c356
16 changed files with 64 additions and 36 deletions
@@ -0,0 +1,10 @@
<?php
namespace Rhumsaa\Uuid\Converter;
interface NumberConverterInterface
{
public function fromHex($hex);
public function toHex($integer);
}