Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
3 / 3 |
| Day | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
3 / 3 |
| __construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| getCondition | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Domain\Weather; |
| 4 | |
| 5 | class Day |
| 6 | { |
| 7 | public function __construct( |
| 8 | private Condition $condition |
| 9 | ) { |
| 10 | } |
| 11 | |
| 12 | public function getCondition(): Condition |
| 13 | { |
| 14 | return $this->condition; |
| 15 | } |
| 16 | } |