Passed
Push — sequential-generator ( f17b30 )
by Marcel
02:49
created
src/SequentialGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 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.