@@ 183-189 (lines=7) @@ | ||
180 | } |
|
181 | } |
|
182 | ||
183 | protected function processInsertOperation(Operation $operation, $newRows, &$appliedRowSpans, $forceExpansion = false) |
|
184 | { |
|
185 | $targetRows = array_slice($newRows, $operation->startInNew, $operation->endInNew - $operation->startInNew); |
|
186 | foreach ($targetRows as $row) { |
|
187 | $this->diffAndAppendRows(null, $row, $appliedRowSpans, $forceExpansion); |
|
188 | } |
|
189 | } |
|
190 | ||
191 | protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false) |
|
192 | { |
|
@@ 191-197 (lines=7) @@ | ||
188 | } |
|
189 | } |
|
190 | ||
191 | protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false) |
|
192 | { |
|
193 | $targetRows = array_slice($oldRows, $operation->startInOld, $operation->endInOld - $operation->startInOld); |
|
194 | foreach ($targetRows as $row) { |
|
195 | $this->diffAndAppendRows($row, null, $appliedRowSpans, $forceExpansion); |
|
196 | } |
|
197 | } |
|
198 | ||
199 | protected function processEqualOperation(Operation $operation, $oldRows, $newRows, &$appliedRowSpans) |
|
200 | { |