| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function full(Results $results): void |
||
| 37 | { |
||
| 38 | $this->title(); |
||
| 39 | $this->sectionSpacing(); |
||
| 40 | $this->tests($results); |
||
| 41 | $this->sectionSpacing(); |
||
| 42 | $this->completed($results); |
||
| 43 | $this->sectionSpacing(); |
||
| 44 | $this->meta(); |
||
| 45 | $this->sectionSpacing(); |
||
| 46 | $this->results($results); |
||
| 47 | $this->issues($results); |
||
| 48 | } |
||
| 85 |