mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid\Converter;
|
|
|
|
interface NumberConverterInterface
|
|
{
|
|
public function fromHex($hex);
|
|
|
|
public function toHex($integer);
|
|
}
|