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 -2
View File
@@ -16,8 +16,17 @@ namespace Ramsey\Uuid\Provider\Node;
use Ramsey\Uuid\Provider\NodeProviderInterface;
/**
* SystemNodeProvider provides functionality to get the system node ID (MAC
* address) using external system calls
*/
class SystemNodeProvider implements NodeProviderInterface
{
/**
* Returns the system node ID
*
* @return string System node ID as a hexadecimal string
*/
public function getNode()
{
static $node = null;
@@ -43,8 +52,6 @@ class SystemNodeProvider implements NodeProviderInterface
/**
* Returns the network interface configuration for the system
*
* @todo Needs evaluation and possibly modification to ensure this works
* well across multiple platforms.
* @codeCoverageIgnore
* @return string
*/