Completed
Push — master ( d23c21...aa7809 )
by Ivannis Suárez
06:38
created
UUID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             throw new \InvalidArgumentException(sprintf('Argument "%s" is an invalid UUID.', $value));
44 44
         }
45 45
 
46
-        parent::__construct($value === null ? self::nextUUIDValue() :  $value);
46
+        parent::__construct($value === null ? self::nextUUIDValue() : $value);
47 47
     }
48 48
 
49 49
     /**
Please login to merge, or discard this patch.
Tests/Units/HashIdTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             ->then
45 45
                 ->string($id->toNative())->isEqualTo('GyuEmsRBfy61i59si0')
46 46
                 ->exception(
47
-                    function () {
47
+                    function() {
48 48
                         HashId::fromNative(109);
49 49
                     }
50 50
                 )->isInstanceOf(\InvalidArgumentException::class)
Please login to merge, or discard this patch.
Tests/Units/AutoIncrementIdTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             ->then
45 45
                 ->integer($id->toNative())->isEqualTo(10)
46 46
                 ->exception(
47
-                    function () {
47
+                    function() {
48 48
                         AutoIncrementId::fromNative('some-string');
49 49
                     }
50 50
                 )->isInstanceOf(\InvalidArgumentException::class)
Please login to merge, or discard this patch.
Tests/Units/SequenceIdTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             ->then
45 45
                 ->string($id->toNative())->isEqualTo('000871667')
46 46
                 ->exception(
47
-                    function () {
47
+                    function() {
48 48
                         SequenceId::fromNative(654.28);
49 49
                     }
50 50
                 )->isInstanceOf(\InvalidArgumentException::class)
Please login to merge, or discard this patch.