Conditions | 4 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
37 | public function queryUntilFoundOrTime(GetSatStatusCommand $command, int $waitSeconds = 120): GetSatStatusResult |
||
38 | { |
||
39 | $runUntilTime = time() + $waitSeconds; |
||
40 | do { |
||
41 | $result = $this->query($command); |
||
42 | if ('No Encontrado' === $result->cfdi() && time() <= $runUntilTime) { |
||
43 | usleep(200000); |
||
44 | continue; |
||
45 | } |
||
46 | break; |
||
47 | } while (true); |
||
48 | return $result; |
||
49 | } |
||
51 |