Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 4 | public function __construct( |
|
30 | bool $privatePerson, |
||
31 | int $pickupOfficeId = null, |
||
32 | CalculationAddressLocation $addressLocation = null |
||
33 | ) { |
||
34 | 4 | $this->privatePerson = $privatePerson; |
|
35 | 4 | $this->pickupOfficeId = $pickupOfficeId; |
|
36 | 4 | $this->addressLocation = $addressLocation; |
|
37 | } |
||
69 |