DiffOpChange.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Drupal\Component\Diff\EngineFile
core/lib/Drupal/Component/Diff/Engine/DiffOpChange.phpView source
<?php
/**
* @file
* Contains \Drupal\Component\Diff\Engine\DiffOpChange.
*/
namespace Drupal\Component\Diff\Engine;
/**
* @todo document
* @private
* @subpackage DifferenceEngine
*/
class DiffOpChange extends DiffOp {
var $type = 'change';
public function __construct($orig, $closing) {
$this->orig = $orig;
$this->closing = $closing;
}
public function reverse() {
return new DiffOpChange($this->closing, $this->orig);
}
}
Classes
Name | Description |
---|---|
DiffOpChange | @todo document @private @subpackage DifferenceEngine |