| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function merge(IndexComparison $other): IndexComparison |
||
| 37 | { |
||
| 38 | assert(empty(array_intersect(array_keys($this->objectComparisons), array_keys($other->objectComparisons)))); |
||
| 39 | |||
| 40 | $this->objectComparisons = array_merge($this->objectComparisons, $other->objectComparisons); |
||
| 41 | |||
| 42 | return $this; |
||
| 43 | } |
||
| 44 | |||
| 61 |