Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
14 | 20 | public function __construct( |
|
15 | ?string $businessName, |
||
16 | ?string $shortBusinessName, |
||
17 | ?array $currentTradeNames, |
||
18 | ?array $currentStatutoryNames |
||
19 | ) { |
||
20 | 20 | $this->businessName = $businessName; |
|
21 | 20 | $this->shortBusinessName = $shortBusinessName; |
|
22 | 20 | $this->currentTradeNames = $currentTradeNames; |
|
23 | 20 | $this->currentStatutoryNames = $currentStatutoryNames; |
|
24 | 20 | } |
|
25 | |||
46 |