Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| BoardComparisonResult | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | class BoardComparisonResult |
| 4 | { |
| 5 | public function __construct(int $difference, string $diff) |
| 6 | { |
| 7 | $this->difference = $difference; |
| 8 | $this->diff = $diff; |
| 9 | } |
| 10 | |
| 11 | public int $difference; |
| 12 | public string $diff; |
| 13 | } |