| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function __construct( CloudStorage $storage, UploadResponse $response ) |
||
| 36 | { |
||
| 37 | $this->storage = $storage; |
||
| 38 | $this->response = $response; |
||
| 39 | $this->delay = (new Backoff) |
||
| 40 | ->setStrategy(new PolynomialStrategy(5, 3)) |
||
| 41 | ->setWaitCap(900) |
||
| 42 | ->getWaitTime($response->getStatusChecks()); |
||
| 43 | } |
||
| 44 | |||
| 52 | } |