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