@@ 268-274 (lines=7) @@ | ||
265 | } |
|
266 | } |
|
267 | ||
268 | protected function processInsertOperation(Operation $operation, $newRows, &$appliedRowSpans, $forceExpansion = false) |
|
269 | { |
|
270 | $targetRows = array_slice($newRows, $operation->startInNew, $operation->endInNew - $operation->startInNew); |
|
271 | foreach ($targetRows as $row) { |
|
272 | $this->diffAndAppendRows(null, $row, $appliedRowSpans, $forceExpansion); |
|
273 | } |
|
274 | } |
|
275 | ||
276 | protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false) |
|
277 | { |
|
@@ 276-282 (lines=7) @@ | ||
273 | } |
|
274 | } |
|
275 | ||
276 | protected function processDeleteOperation(Operation $operation, $oldRows, &$appliedRowSpans, $forceExpansion = false) |
|
277 | { |
|
278 | $targetRows = array_slice($oldRows, $operation->startInOld, $operation->endInOld - $operation->startInOld); |
|
279 | foreach ($targetRows as $row) { |
|
280 | $this->diffAndAppendRows($row, null, $appliedRowSpans, $forceExpansion); |
|
281 | } |
|
282 | } |
|
283 | ||
284 | protected function processEqualOperation(Operation $operation, $oldRows, $newRows, &$appliedRowSpans) |
|
285 | { |