Completed
Push — custom-comb ( 56d79c...b326b6 )
by Marcel
20:26 queued 10:47
created
src/Version5Generator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         }
39 39
 
40 40
         // Use the 16 most significant octets of the hash as the basis for the new Uuid.
41
-        $bytes = \unpack('C16', \sha1($this->nsBytes . $name, true));
41
+        $bytes = \unpack('C16', \sha1($this->nsBytes.$name, true));
42 42
 
43 43
         // Set the four most significant bits (bits 12 through 15) of the
44 44
         // time_hi_and_version field to the appropriate 4-bit version number
Please login to merge, or discard this patch.
src/Uuid.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     private function __construct(string $text)
37 37
     {
38 38
         if (false === self::isUuid($text)) {
39
-            throw new \InvalidArgumentException('$text is not a valid Uuid. Got: ' . $text);
39
+            throw new \InvalidArgumentException('$text is not a valid Uuid. Got: '.$text);
40 40
         }
41 41
 
42 42
         $this->uuid = \strtolower($text);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public static function fromBytes(string $bytes): Uuid
67 67
     {
68 68
         if (16 !== \strlen($bytes)) {
69
-            throw new \InvalidArgumentException('Length of $bytes for new Uuid is not 16. Got: 0x' . \bin2hex($bytes));
69
+            throw new \InvalidArgumentException('Length of $bytes for new Uuid is not 16. Got: 0x'.\bin2hex($bytes));
70 70
         }
71 71
 
72 72
         return new self(self::bin2str($bytes));
Please login to merge, or discard this patch.
src/CustomCombGenerator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
     public function __construct(UuidGenerator $generator, \DateTimeImmutable $epoch, int $span, int $granularity)
40 40
     {
41 41
         if (new \DateTimeImmutable('now') < $epoch) {
42
-            throw new \InvalidArgumentException('$epoch must be in the past. Got timestamp: ' . $epoch->getTimestamp());
42
+            throw new \InvalidArgumentException('$epoch must be in the past. Got timestamp: '.$epoch->getTimestamp());
43 43
         }
44 44
 
45 45
         if (!\in_array($span, \range(1, 16), true)) {
46
-            throw new \InvalidArgumentException('$span must be in the [1, 16] range. Got: ' . $span);
46
+            throw new \InvalidArgumentException('$span must be in the [1, 16] range. Got: '.$span);
47 47
         }
48 48
 
49 49
         if (!\in_array($granularity, \range(0, 6), true)) {
50
-            throw new \InvalidArgumentException('$granularity must be in the [0, 6] range. Got: ' . $granularity);
50
+            throw new \InvalidArgumentException('$granularity must be in the [0, 6] range. Got: '.$granularity);
51 51
         }
52 52
 
53 53
         $this->generator = $generator;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $head = $this->procrust($this->timestamp());
65 65
         $tail = \substr($this->generator->generate()->asBytes(), -16 + ($this->span / 2));
66 66
 
67
-        return Uuid::fromBytes($head . $tail);
67
+        return Uuid::fromBytes($head.$tail);
68 68
     }
69 69
 
70 70
     /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function getOverflowDate(): \DateTimeImmutable
78 78
     {
79
-        $maxTimestamp = (int)(($this->maxTimestamp() - $this->epoch)/$this->exponent);
79
+        $maxTimestamp = (int) (($this->maxTimestamp() - $this->epoch) / $this->exponent);
80 80
 
81 81
         return new \DateTimeImmutable("@$maxTimestamp UTC");
82 82
     }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     private function timestamp(): string
123 123
     {
124
-        return \dechex((int)(\microtime(true) * $this->exponent) - $this->epoch);
124
+        return \dechex((int) (\microtime(true) * $this->exponent) - $this->epoch);
125 125
     }
126 126
 
127 127
     private function maxTimestamp(): int
Please login to merge, or discard this patch.
src/Version1Generator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function __construct(string $nodeID)
48 48
     {
49 49
         if (0 === \preg_match(self::MAC_ADDR_FORMAT, $nodeID)) {
50
-            throw new \InvalidArgumentException('$nodeID is not a valid MAC address. Got: ' . $nodeID);
50
+            throw new \InvalidArgumentException('$nodeID is not a valid MAC address. Got: '.$nodeID);
51 51
         }
52 52
 
53 53
         $this->nodeID = \str_replace(':', '', $nodeID);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         $bytes = \pack(
61 61
             'NnnnH12',
62
-            $t       & 0xffffffff,
62
+            $t & 0xffffffff,
63 63
             $t >> 32 & 0xffff,
64 64
             $t >> 48 & 0x0fff | 0x1000,
65 65
             \random_int(0, 0x3fff) | 0x8000,
@@ -83,6 +83,6 @@  discard block
 block discarded – undo
83 83
      */
84 84
     private function timestamp(): int
85 85
     {
86
-        return self::GREGORIAN_OFFSET + (int)(10000000 * \microtime(true));
86
+        return self::GREGORIAN_OFFSET + (int) (10000000 * \microtime(true));
87 87
     }
88 88
 }
Please login to merge, or discard this patch.
src/SequentialGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
      */
45 45
     public function generate(string $name = null): Uuid
46 46
     {
47
-        return Uuid::fromBytes($this->head . \pack('J', $this->counter++));
47
+        return Uuid::fromBytes($this->head.\pack('J', $this->counter++));
48 48
     }
49 49
 }
Please login to merge, or discard this patch.