| 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', 'instance of' ); |
|
| 19 | 1 | $fingerprint->setLabel( 'de', 'ist ein(e)' ); |
|
| 20 | |||
| 21 | 1 | $fingerprint->setDescription( 'en', 'this item is a concrete object (instance) of this class, category or object group' ); |
|
| 22 | 1 | $fingerprint->setDescription( 'de', 'Ausprägung oder Exemplar einer Sache' ); |
|
| 23 | |||
| 24 | 1 | return $fingerprint; |
|
| 25 | } |
||
| 26 | |||
| 40 |