Files
php-uuid/src/Converter/NumberConverterInterface.php
T

10 lines
154 B
PHP

<?php
namespace Rhumsaa\Uuid\Converter;
interface NumberConverterInterface
{
public function fromHex($hex);
public function toHex($integer);
}