class DiffOpDelete
@todo document @private @subpackage DifferenceEngine
Hierarchy
- class \Drupal\Component\Diff\Engine\DiffOp
- class \Drupal\Component\Diff\Engine\DiffOpDelete extends \Drupal\Component\Diff\Engine\DiffOp
 
 
Expanded class hierarchy of DiffOpDelete
3 files declare their use of DiffOpDelete
- DiffEngineTest.php in core/
tests/ Drupal/ Tests/ Component/ Diff/ Engine/ DiffEngineTest.php  - DiffOpOutputBuilder.php in core/
lib/ Drupal/ Component/ Diff/ DiffOpOutputBuilder.php  - DiffOpOutputBuilderTest.php in core/
tests/ Drupal/ Tests/ Component/ Diff/ DiffOpOutputBuilderTest.php  
File
- 
              core/
lib/ Drupal/ Component/ Diff/ Engine/ DiffOpDelete.php, line 10  
Namespace
Drupal\Component\Diff\EngineView source
class DiffOpDelete extends DiffOp {
  public $type = 'delete';
  public function __construct($lines) {
    $this->orig = $lines;
    $this->closing = FALSE;
  }
  
  /**
   * @deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no
   *   replacement.
   *
   * @see https://www.drupal.org/node/3337942
   */
  public function reverse() {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3337942', E_USER_DEPRECATED);
    return new DiffOpAdd($this->orig);
  }
}
Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overriden Title | 
|---|---|---|---|---|---|
| DiffOp::$closing | public | property | |||
| DiffOp::$orig | public | property | |||
| DiffOp::nclosing | Deprecated | public | function | ||
| DiffOp::norig | Deprecated | public | function | ||
| DiffOpDelete::$type | public | property | Overrides DiffOp::$type | ||
| DiffOpDelete::reverse | Deprecated | public | function | Overrides DiffOp::reverse | |
| DiffOpDelete::__construct | public | function | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.