DiffFormatter::_changed

protected DiffFormatter::_changed($orig, $closing)

File

core/lib/Drupal/Component/Diff/DiffFormatter.php, line 181

Class

DiffFormatter
A class to format Diffs

Namespace

Drupal\Component\Diff

Code

1
2
3
4
5
protected function _changed($orig, $closing) {
  $this->_deleted($orig);
  echo "---\n";
  $this->_added($closing);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.