class DiffOpChange

Same name in other branches
  1. 9 core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange
  2. 8.9.x core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange
  3. 10 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 extends \Drupal\Component\Diff\Engine\DiffOp

Expanded class hierarchy of DiffOpChange

2 files declare their use of DiffOpChange
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/DiffOpChange.php, line 10

Namespace

Drupal\Component\Diff\Engine
View source
class DiffOpChange extends DiffOp {
    public $type = 'change';
    public function __construct($orig, $closing) {
        $this->orig = $orig;
        $this->closing = $closing;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
DiffOp::$closing public property
DiffOp::$orig public property
DiffOpChange::$type public property Overrides DiffOp::$type
DiffOpChange::__construct public function

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