Add docblocks for classes and interfaces in Ramsey\Uuid\Provider namespace

This commit is contained in:
Ben Ramsey
2015-09-27 13:02:30 -05:00
parent 36ebfcfc93
commit d975f0f143
7 changed files with 93 additions and 5 deletions
+9
View File
@@ -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();
}