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