class DiffOpChange in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange
- 9 core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange
@todo document @private @subpackage DifferenceEngine
Hierarchy
- class \Drupal\Component\Diff\Engine\DiffOp
- class \Drupal\Component\Diff\Engine\DiffOpChange
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\EngineView 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);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DiffOp:: |
public | property | ||
DiffOp:: |
public | property | ||
DiffOp:: |
public | function | ||
DiffOp:: |
public | function | ||
DiffOpChange:: |
public | property |
Overrides DiffOp:: |
|
DiffOpChange:: |
public | function |
Overrides DiffOp:: |
|
DiffOpChange:: |
public | function |