From cba8a1b22e32568b453ab3fc1a4df40982e68c40 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 5 Jul 2012 20:07:10 -0500 Subject: [PATCH] Wrapping lines for cleanliness. --- library/Rhumsaa/Uuid/Uuid.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/library/Rhumsaa/Uuid/Uuid.php b/library/Rhumsaa/Uuid/Uuid.php index 2cbdeb3..8103dc7 100644 --- a/library/Rhumsaa/Uuid/Uuid.php +++ b/library/Rhumsaa/Uuid/Uuid.php @@ -411,7 +411,9 @@ final class Uuid // Create a 60-bit time value as a count of 100-nanosecond intervals // since 00:00:00.00, 15 October 1582 $timeOfDay = gettimeofday(); - $uuidTime = ($timeOfDay['sec'] * 10000000) + ($timeOfDay['usec'] * 10) + 0x01b21dd213814000; + $uuidTime = ($timeOfDay['sec'] * 10000000) + + ($timeOfDay['usec'] * 10) + + 0x01b21dd213814000; // Get the time parts for putting together most significant bits $timeLow = $uuidTime & 0xffffffff;