function WordLevelDiff::closing

Same name in other branches
  1. 9 core/lib/Drupal/Component/Diff/WordLevelDiff.php \Drupal\Component\Diff\WordLevelDiff::closing()
  2. 8.9.x core/lib/Drupal/Component/Diff/WordLevelDiff.php \Drupal\Component\Diff\WordLevelDiff::closing()
  3. 10 core/lib/Drupal/Component/Diff/WordLevelDiff.php \Drupal\Component\Diff\WordLevelDiff::closing()

File

core/lib/Drupal/Component/Diff/WordLevelDiff.php, line 66

Class

WordLevelDiff
@todo document @private @subpackage DifferenceEngine

Namespace

Drupal\Component\Diff

Code

public function closing() {
    $closing = new HWLDFWordAccumulator();
    foreach ($this->edits as $edit) {
        if ($edit->type == 'copy') {
            $closing->addWords($edit->closing);
        }
        elseif ($edit->closing) {
            $closing->addWords($edit->closing, 'mark');
        }
    }
    $lines = $closing->getLines();
    return $lines;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.