Passed
Pull Request — main (#128)
by
unknown
15:02 queued 01:01
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/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.
src/ValueObjects/IdempotencyKey.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,9 @@
 block discarded – undo
39 39
      *
40 40
      * @param string $value A unique identifier for this verification request.
41 41
      */
42
-    public function __construct(private string $value) {}
42
+    public function __construct(private string $value)
43
+    {
44
+}
43 45
 
44 46
     /**
45 47
      * Get the raw idempotency key value.
Please login to merge, or discard this patch.