| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 44 | public function patchFingerprint( Fingerprint $fingerprint, EntityDiff $patch ) { |
||
| 45 | 4 | $this->termListPatcher->patchTermList( |
|
| 46 | 4 | $fingerprint->getLabels(), |
|
| 47 | 4 | $patch->getLabelsDiff() |
|
| 48 | 4 | ); |
|
| 49 | |||
| 50 | 4 | $this->termListPatcher->patchTermList( |
|
| 51 | $fingerprint->getDescriptions(), |
||
| 52 | 4 | $patch->getDescriptionsDiff() |
|
| 53 | 4 | ); |
|
| 54 | |||
| 55 | $this->aliasGroupListPatcher->patchAliasGroupList( |
||
| 56 | $fingerprint->getAliasGroups(), |
||
| 57 | $patch->getAliasesDiff() |
||
| 58 | ); |
||
| 62 |