Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
24 | #[\Attribute(\Attribute::TARGET_CLASS), NamedArgumentConstructor] |
||
25 | class RetryPolicy |
||
26 | { |
||
27 | /** |
||
28 | * @param 0|positive-int $maxAttempts |
||
|
|||
29 | * @param positive-int $delay in seconds. |
||
30 | */ |
||
31 | 11 | public function __construct( |
|
36 | 11 | } |
|
37 | |||
38 | 3 | public function getRetryPolicy(): RetryPolicyInterface |
|
47 |