Skip to content

Commit 0aa5df5

Browse files
Merge pull request #160 from GrahamCampbell/analysis-LZOmPl
Apply fixes from StyleCI
2 parents 117621e + 509f308 commit 0aa5df5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Identifier/UuidV4Generator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ public static function generate(): string
3232
$hash = bin2hex(random_bytes(16));
3333

3434
$timeHi = hexdec(substr($hash, 12, 4)) & 0x0FFF;
35-
$timeHi &= ~(0xF000);
35+
$timeHi &= ~0xF000;
3636
$timeHi |= 4 << 12;
3737

3838
$clockSeqHi = hexdec(substr($hash, 16, 2)) & 0x3F;
39-
$clockSeqHi &= ~(0xC0);
39+
$clockSeqHi &= ~0xC0;
4040
$clockSeqHi |= 0x80;
4141

4242
$params = [

0 commit comments

Comments
 (0)