1 diff.inc | Diff::closing() |
Get the closing set of lines.
This reconstructs the $to_lines parameter passed to the constructor.
Return value
array The sequence of strings.:
File
- core/
includes/ diff.inc, line 732 - A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)
Class
- Diff
- Class representing a 'diff' between two sequences of strings.
Code
function closing() {
$lines = array();
foreach ($this->edits as $edit) {
if ($edit->closing) {
array_splice($lines, count($lines), 0, $edit->closing);
}
}
return $lines;
}