| Total Complexity | 2 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class FingerprintPatcher { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var TermListPatcher |
||
| 23 | */ |
||
| 24 | private $termListPatcher; |
||
| 25 | |||
| 26 | /** |
||
| 27 | 4 | * @var AliasGroupListPatcher |
|
| 28 | 4 | */ |
|
| 29 | 4 | private $aliasGroupListPatcher; |
|
| 30 | |||
| 31 | public function __construct() { |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | 4 | * @since 1.0 |
|
| 38 | 4 | * |
|
| 39 | 4 | * @param Fingerprint $fingerprint |
|
| 40 | 4 | * @param EntityDiff $patch |
|
| 41 | 4 | * |
|
| 42 | * @throws PatcherException |
||
| 43 | 4 | */ |
|
| 44 | public function patchFingerprint( Fingerprint $fingerprint, EntityDiff $patch ) { |
||
| 62 |