Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
46 | public function render(Solution $solution): void |
||
47 | { |
||
48 | $puzzle = $solution->original(); |
||
49 | $this->log($puzzle->representation()); |
||
50 | usleep($this->timeout); |
||
51 | foreach ($solution->moves() as $move) { |
||
52 | $puzzle = $puzzle->afterMaking($move); |
||
53 | $this->log($this->separator); |
||
54 | $this->log($puzzle->representation()); |
||
55 | usleep($this->timeout); |
||
56 | } |
||
64 |