DiffOpChange.php
Same filename and directory in other branches
Namespace
Drupal\Component\Diff\EngineFile
-
core/
lib/ Drupal/ Component/ Diff/ Engine/ DiffOpChange.php
View source
<?php
namespace Drupal\Component\Diff\Engine;
/**
* A diff operation to change lines.
*
* @private
* @subpackage DifferenceEngine
*/
class DiffOpChange extends DiffOp {
/**
* {@inheritdoc}
*/
public $type = 'change';
public function __construct($orig, $closing) {
$this->orig = $orig;
$this->closing = $closing;
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| DiffOpChange | A diff operation to change lines. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.