Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 1 | public function newFingerprint() { |
|
17 | 1 | $fingerprint = new Fingerprint(); |
|
18 | |||
19 | 1 | $fingerprint->setLabel( 'en', 'knowledge base' ); |
|
20 | 1 | $fingerprint->setLabel( 'de', 'Wissensdatenbank' ); |
|
21 | 1 | $fingerprint->setLabel( 'fr', 'base de connaissance' ); |
|
22 | |||
23 | 1 | $fingerprint->setAliasGroup( 'de', [ 'Knowledgebase', 'Wissensbasis', 'Wissensbank', 'Knowledge Base' ] ); |
|
24 | |||
25 | 1 | $fingerprint->setDescription( 'en', 'information repository with multiple applications' ); |
|
26 | |||
27 | 1 | return $fingerprint; |
|
28 | } |
||
29 | |||
43 |