From 6812417da15e9aaabc19bc8ec8d02ac07aa66722 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Tue, 6 Aug 2013 18:12:15 -0500 Subject: [PATCH] Corrected constructor documentation --- src/Rhumsaa/Uuid/Uuid.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Rhumsaa/Uuid/Uuid.php b/src/Rhumsaa/Uuid/Uuid.php index 73b4ad3..7cef542 100644 --- a/src/Rhumsaa/Uuid/Uuid.php +++ b/src/Rhumsaa/Uuid/Uuid.php @@ -120,7 +120,7 @@ final class Uuid * This is initialized to the nil value. * * @var array - * @see Uuid::getFields + * @link Rhumsaa.Uuid.Uuid.html#method_getFields */ protected $fields = array( 'time_low' => '00000000', @@ -132,13 +132,13 @@ final class Uuid ); /** - * Creates a universally unique identifier (UUID) from the most significant - * bits and least significant bits. + * Creates a universally unique identifier (UUID) from an array of fields. * * Protected to prevent direct instantiation. Use static methods to create * UUIDs. * * @param array $fields + * @link Rhumsaa.Uuid.Uuid.html#method_getFields */ protected function __construct(array $fields) {