mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
12 lines
159 B
PHP
12 lines
159 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
interface UuidBuilder
|
|
{
|
|
/**
|
|
* @return Uuid
|
|
*/
|
|
public function build(CodecInterface $codec, array $fields);
|
|
}
|