mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-24 17:35:57 +03:00
Add docblocks for classes and interfaces in Ramsey\Uuid\Provider namespace
This commit is contained in:
@@ -14,7 +14,16 @@
|
||||
|
||||
namespace Ramsey\Uuid\Provider;
|
||||
|
||||
/**
|
||||
* NodeProviderInterface provides functionality to get the node ID (or host ID
|
||||
* in the form of the system's MAC address) from a specific type of node provider
|
||||
*/
|
||||
interface NodeProviderInterface
|
||||
{
|
||||
/**
|
||||
* Returns the system node ID
|
||||
*
|
||||
* @return string System node ID as a hexadecimal string
|
||||
*/
|
||||
public function getNode();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user