| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function newFingerprint() { |
||
| 16 | $fingerprint = new Fingerprint(); |
||
| 17 | |||
| 18 | $fingerprint->setLabel( 'en', 'city' ); |
||
| 19 | $fingerprint->setLabel( 'de', 'Stadt' ); |
||
| 20 | |||
| 21 | $fingerprint->setDescription( 'en', 'permanent settlement larger than a town, generally with a population of at least tens of thousands' ); |
||
| 22 | $fingerprint->setDescription( 'de', 'größere, zentralisierte und abgegrenzte Siedlung' ); |
||
| 23 | |||
| 24 | return $fingerprint; |
||
| 25 | } |
||
| 26 | |||
| 40 |