| Conditions | 3 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 3.3332 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 14 | public function getAddressType(): ?string { |
|
| 27 | 10 | if ( $this->featureToggle->featureIsActive( 'campaigns.address_type.no_preselection' ) ) { |
|
| 28 | return null; |
||
| 29 | 4 | } elseif ( $this->featureToggle->featureIsActive( 'campaigns.address_type.preselection' ) ) { |
|
| 30 | 4 | return 'person'; |
|
| 31 | } |
||
| 32 | throw new UnknownChoiceDefinition( 'Address type configuration failure.' ); |
||
| 33 | } |
||
| 35 |