@@ -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 | |
@@ -44,6 +44,6 @@ discard block |
||
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 | } |