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