You are here

public function DiffOpChange::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php \Drupal\Component\Diff\Engine\DiffOpChange::__construct()

File

core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php, line 18
Contains \Drupal\Component\Diff\Engine\DiffOpChange.

Class

DiffOpChange
@todo document @private @subpackage DifferenceEngine

Namespace

Drupal\Component\Diff\Engine

Code

public function __construct($orig, $closing) {
  $this->orig = $orig;
  $this->closing = $closing;
}