Passed
Branch main (cc8684)
by Eric
65:32 queued 28:41
created
Category
src/ValueObjects/IdempotencyKey.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,9 @@
 block discarded – undo
21 21
  */
22 22
 final readonly class IdempotencyKey implements Stringable
23 23
 {
24
-    public function __construct(private string $value) {}
24
+    public function __construct(private string $value)
25
+    {
26
+}
25 27
 
26 28
     public function __toString(): string
27 29
     {
Please login to merge, or discard this patch.
src/VerifyConfiguration.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@
 block discarded – undo
31 31
         private ?IpAddress $remoteIp = null,
32 32
         private ?IdempotencyKey $idempotencyKey = null,
33 33
         private array $customData = []
34
-    ) {}
34
+    ) {
35
+}
35 36
 
36 37
     /**
37 38
      * @return array<string, string>
Please login to merge, or discard this patch.
src/Turnstile.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,8 @@
 block discarded – undo
43 43
         private RequestFactoryInterface $requestFactory,
44 44
         private StreamFactoryInterface $streamFactory,
45 45
         private SecretKey $secretKey
46
-    ) {}
46
+    ) {
47
+}
47 48
 
48 49
     /**
49 50
      * Verify a Turnstile response token.
Please login to merge, or discard this patch.