class DiffOpChange

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange

@todo document @private @subpackage DifferenceEngine

Hierarchy

Expanded class hierarchy of DiffOpChange

1 file declares its use of DiffOpChange
DiffEngineTest.php in core/tests/Drupal/Tests/Component/Diff/Engine/DiffEngineTest.php

File

core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php, line 10

Namespace

Drupal\Component\Diff\Engine
View source
class DiffOpChange extends DiffOp {
  public $type = 'change';
  public function __construct($orig, $closing) {
    $this->orig = $orig;
    $this->closing = $closing;
  }
  public function reverse() {
    return new DiffOpChange($this->closing, $this->orig);
  }

}

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