| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function __construct(string $name, object $insightCount) |
||
| 20 | { |
||
| 21 | $this->name = $name; |
||
| 22 | $this->pass = $insightCount->pass; |
||
| 23 | $this->fail = $insightCount->fail; |
||
| 24 | $this->ignored = $insightCount->ignored; |
||
| 25 | $this->total = $insightCount->total; |
||
| 26 | $this->percent = $insightCount->percent; |
||
| 27 | } |
||
| 29 |