Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
Insurance | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getPrice | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace Alfa\Interview\Context\ValueObject; |
6 | |
7 | use Alfa\Interview\Context\Enum\InsuranceType; |
8 | use Alfa\Interview\Context\Interface\HasPrice; |
9 | |
10 | class Insurance implements HasPrice |
11 | { |
12 | public function __construct( |
13 | private readonly InsuranceType $type |
14 | ) { |
15 | } |
16 | |
17 | public function getPrice(): Price |
18 | { |
19 | return new Price($this->type->value); |
20 | } |
21 | } |