| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function __construct( |
||
| 19 | ?string $contactPhone = null, |
||
| 20 | ?string $displayName = null, |
||
| 21 | string $incomeType = IncomeType::INDIVIDUAL, |
||
| 22 | ?string $inn = null |
||
| 23 | ) { |
||
| 24 | $this->contactPhone = $contactPhone; |
||
| 25 | $this->displayName = $displayName; |
||
| 26 | $this->incomeType = $incomeType; |
||
| 27 | $this->inn = $inn; |
||
| 28 | } |
||
| 40 |