@@ -21,7 +21,9 @@ |
||
| 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 | { |
@@ -31,7 +31,8 @@ |
||
| 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> |
@@ -43,7 +43,8 @@ |
||
| 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. |