| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | interface RetryStrategyInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @param InternalRequestInterface $request |
||
| 23 | * |
||
| 24 | * @return bool |
||
| 25 | */ |
||
| 26 | public function verify(InternalRequestInterface $request); |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param InternalRequestInterface $request |
||
| 30 | * |
||
| 31 | * @return float |
||
| 32 | */ |
||
| 33 | public function delay(InternalRequestInterface $request); |
||
| 34 | } |
||
| 35 |