mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-24 17:35:57 +03:00
9 lines
107 B
PHP
9 lines
107 B
PHP
<?php
|
|
|
|
namespace Ramsey\Uuid\Provider;
|
|
|
|
interface NodeProviderInterface
|
|
{
|
|
public function getNode();
|
|
}
|