class _DiffOp_Change

@todo document @private @subpackage DifferenceEngine

Hierarchy

Expanded class hierarchy of _DiffOp_Change

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 98
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

View source
class _DiffOp_Change extends _DiffOp {
  var $type = 'change';
  function _DiffOp_Change($orig, $closing) {
    $this->orig = $orig;
    $this->closing = $closing;
  }
  function reverse() {
    return new _DiffOp_Change($this->closing, $this->orig);
  }

}

Members