You are here

function DrupalDiffInline::__construct in Diff 7.2

Same name and namespace in other branches
  1. 6.2 DiffEngine.php \DrupalDiffInline::__construct()
  2. 7.3 DiffEngine.php \DrupalDiffInline::__construct()

Constructor.

File

./DiffEngine.php, line 1220
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

DrupalDiffInline
Drupal inline Diff formatter. @private @subpackage DifferenceEngine

Code

function __construct($a, $b) {
  $this->a = $a;
  $this->b = $b;
}