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