| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 57 | public function nextCandidate(): Puzzle |
||
| 58 | { |
||
| 59 | $puzzle = $this->search->nextCandidate(); |
||
| 60 | if (!$this->isFirst) { |
||
| 61 | $this->log($this->separator); |
||
| 62 | } |
||
| 63 | $this->isFirst = false; |
||
| 64 | $this->log($puzzle->representation()); |
||
| 65 | usleep($this->timeout); |
||
| 66 | return $puzzle; |
||
| 67 | } |
||
| 74 |