Passed
Push — main ( 0acde4...a42a17 )
by Eric
02:17
created
src/VerifyConfiguration.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,8 @@
 block discarded – undo
42 42
         private ?IpAddress $remoteIp = null,
43 43
         private ?IdempotencyKey $idempotencyKey = null,
44 44
         private array $customData = []
45
-    ) {}
45
+    ) {
46
+}
46 47
 
47 48
     /**
48 49
      * Gets the custom data (cdata) passed to the widget on the client side.
Please login to merge, or discard this patch.
src/ValueObjects/IdempotencyKey.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,9 @@
 block discarded – undo
23 23
  */
24 24
 final readonly class IdempotencyKey implements Stringable
25 25
 {
26
-    public function __construct(private string $value) {}
26
+    public function __construct(private string $value)
27
+    {
28
+}
27 29
 
28 30
     /**
29 31
      * Get the raw idempotency key value.
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
@@ -62,7 +62,8 @@
 block discarded – undo
62 62
         private RequestFactoryInterface $requestFactory,
63 63
         private StreamFactoryInterface $streamFactory,
64 64
         private SecretKey $secretKey
65
-    ) {}
65
+    ) {
66
+}
66 67
 
67 68
     /**
68 69
      * Verifies a Turnstile response token.
Please login to merge, or discard this patch.