| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | 1 | public function newFingerprint() { |
|
| 16 | 1 | $fingerprint = new Fingerprint(); |
|
| 17 | |||
| 18 | 1 | $fingerprint->setLabel( 'en', 'postal code' ); |
|
| 19 | 1 | $fingerprint->setAliasGroup( 'en', [ 'zip code', 'post code' ] ); |
|
| 20 | 1 | $fingerprint->setDescription( 'en', 'identifier assigned by postal authorities for the subject area' ); |
|
| 21 | |||
| 22 | 1 | return $fingerprint; |
|
| 23 | } |
||
| 24 | |||
| 38 |