| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -38,7 +38,7 @@ discard block | ||
| 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 | 
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -25,7 +25,7 @@ discard block | ||
| 25 | 25 | public function __construct(int $granularity = 6) | 
| 26 | 26 |      { | 
| 27 | 27 |          if (!\in_array($granularity, \range(0, 6), true)) { | 
| 28 | -            throw new \InvalidArgumentException('$granularity must be in the [0, 6] range. Got: ' . $granularity); | |
| 28 | +            throw new \InvalidArgumentException('$granularity must be in the [0, 6] range. Got: '.$granularity); | |
| 29 | 29 | } | 
| 30 | 30 | |
| 31 | 31 | $this->exponent = 10 ** $granularity; | 
| @@ -37,7 +37,7 @@ discard block | ||
| 37 | 37 | $head = $this->procrust($this->timestamp()); | 
| 38 | 38 | $tail = \substr($this->v4->generate()->asBytes(), -10); | 
| 39 | 39 | |
| 40 | - return Uuid::fromBytes($head . $tail); | |
| 40 | + return Uuid::fromBytes($head.$tail); | |
| 41 | 41 | } | 
| 42 | 42 | |
| 43 | 43 | /** | 
| @@ -51,7 +51,7 @@ discard block | ||
| 51 | 51 |      { | 
| 52 | 52 | $fullTimestampLength = \strlen($this->timestamp()); | 
| 53 | 53 | $choppedDigits = $fullTimestampLength < 12 ? 0 : $fullTimestampLength - 12; | 
| 54 | -        $maxTimestamp = (int)(\hexdec(\str_pad('', 12 + $choppedDigits, 'f'))/$this->exponent); | |
| 54 | +        $maxTimestamp = (int) (\hexdec(\str_pad('', 12 + $choppedDigits, 'f')) / $this->exponent); | |
| 55 | 55 | |
| 56 | 56 |          return new \DateTimeImmutable("@$maxTimestamp UTC"); | 
| 57 | 57 | } | 
| @@ -96,6 +96,6 @@ discard block | ||
| 96 | 96 | */ | 
| 97 | 97 | private function timestamp(): string | 
| 98 | 98 |      { | 
| 99 | - return \dechex((int)(\microtime(true) * $this->exponent)); | |
| 99 | + return \dechex((int) (\microtime(true) * $this->exponent)); | |
| 100 | 100 | } | 
| 101 | 101 | } | 
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -45,7 +45,7 @@ discard block | ||
| 45 | 45 | public function __construct(string $nodeID) | 
| 46 | 46 |      { | 
| 47 | 47 |          if (0 === \preg_match(self::MAC_ADDR_FORMAT, $nodeID)) { | 
| 48 | -            throw new \InvalidArgumentException('$nodeID is not a valid MAC address. Got: ' . $nodeID); | |
| 48 | +            throw new \InvalidArgumentException('$nodeID is not a valid MAC address. Got: '.$nodeID); | |
| 49 | 49 | } | 
| 50 | 50 | |
| 51 | 51 |          $this->nodeID = \str_replace(':', '', $nodeID); | 
| @@ -58,7 +58,7 @@ discard block | ||
| 58 | 58 | |
| 59 | 59 | $bytes = \pack( | 
| 60 | 60 | 'NnnnH12', | 
| 61 | - $t & 0xffffffff, | |
| 61 | + $t & 0xffffffff, | |
| 62 | 62 | $t >> 32 & 0xffff, | 
| 63 | 63 | $t >> 48 & 0x0fff | 0x1000, | 
| 64 | 64 | $this->clockSeq, | 
| @@ -82,6 +82,6 @@ discard block | ||
| 82 | 82 | */ | 
| 83 | 83 | private function timestamp(): int | 
| 84 | 84 |      { | 
| 85 | - return self::GREGORIAN_OFFSET + (int)(10000000 * \microtime(true)); | |
| 85 | + return self::GREGORIAN_OFFSET + (int) (10000000 * \microtime(true)); | |
| 86 | 86 | } | 
| 87 | 87 | } | 
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | use UMA\Uuid\Uuid; | 
| 6 | 6 | use UMA\Uuid\CombGenerator; | 
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types=1); | |
| 3 | +declare(strict_types = 1); | |
| 4 | 4 | |
| 5 | 5 | namespace UMA\Uuid; | 
| 6 | 6 | |
| @@ -36,7 +36,7 @@ discard block | ||
| 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 | ||
| 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)); |