Skip to content

Commit c7cf415

Browse files
committed
chore(config): align default values
1 parent 5a78472 commit c7cf415

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Config/IdempotencyConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ final class IdempotencyConfig
1010
public const DEFAULT_CACHE_STORE = 'default';
1111
public const DEFAULT_IDEMPOTENCY_HEADER = 'Idempotency-Key';
1212
public const DEFAULT_RELAYED_HEADER = 'Idempotency-Relayed';
13-
public const DEFAULT_ENFORCED_VERBS = ['POST', 'PUT', 'PATCH', 'DELETE'];
14-
public const DEFAULT_DUPLICATE_HANDLING = 'exception';
13+
public const DEFAULT_ENFORCED_VERBS = ['GET', 'POST', 'PUT', 'PATCH', 'DELETE'];
14+
public const DEFAULT_DUPLICATE_HANDLING = 'replay';
1515
public const DEFAULT_UNAUTHENTICATED_USER_ID = 'guest';
1616

1717
/**

0 commit comments

Comments
 (0)