function DrupalDiffInline::__construct in Diff 6.2
Same name and namespace in other branches
- 7.3 DiffEngine.php \DrupalDiffInline::__construct()
- 7.2 DiffEngine.php \DrupalDiffInline::__construct()
Constructor.
File
- ./
DiffEngine.php, line 1219 - 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;
}