class DiffOpAdd

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

@todo document @private @subpackage DifferenceEngine

Hierarchy

Expanded class hierarchy of DiffOpAdd

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

File

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

Namespace

Drupal\Component\Diff\Engine
View source
class DiffOpAdd extends DiffOp {
  public $type = 'add';
  public function __construct($lines) {
    $this->closing = $lines;
    $this->orig = FALSE;
  }
  public function reverse() {
    return new DiffOpDelete($this->closing);
  }

}

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