Get the closing set of lines.
This reconstructs the $to_lines parameter passed to the constructor.
array The sequence of strings.
function closing() {
$lines = array();
foreach ($this->edits as $edit) {
if ($edit->closing) {
array_splice($lines, sizeof($lines), 0, $edit->closing);
}
}
return $lines;
}