| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | protected function summaryToString(): string |
||
| 31 | { |
||
| 32 | $queue = $this->pool->getQueue(); |
||
| 33 | $finished = $this->pool->getFinished(); |
||
| 34 | $failed = $this->pool->getFailed(); |
||
| 35 | $timeouts = $this->pool->getTimeouts(); |
||
| 36 | |||
| 37 | return |
||
| 38 | 'queue: '.count($queue) |
||
| 39 | .' - finished: '.count($finished) |
||
| 40 | .' - failed: '.count($failed) |
||
| 41 | .' - timeout: '.count($timeouts); |
||
| 42 | } |
||
| 43 | |||
| 57 |