| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| 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', 'state' ); |
|
| 19 | 1 | $fingerprint->setLabel( 'de', 'Staat' ); |
|
| 20 | |||
| 21 | 1 | $fingerprint->setDescription( 'en', 'organised community living under a system of government; either a sovereign state, constituent state, or federated state' ); |
|
| 22 | 1 | $fingerprint->setDescription( 'de', 'mehrdeutiger Begriff verschiedener Sozial- und Staatswissenschaften' ); |
|
| 23 | |||
| 24 | 1 | return $fingerprint; |
|
| 25 | } |
||
| 26 | |||
| 40 |