Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DiffOpCopy.php

function DiffOpCopy::__construct

File

core/lib/Drupal/Component/Diff/Engine/DiffOpCopy.php, line 13

Class

DiffOpCopy
@todo document @private @subpackage DifferenceEngine

Namespace

Drupal\Component\Diff\Engine

Code

public function __construct($orig, $closing = FALSE) {
    if (!is_array($closing)) {
        $closing = $orig;
    }
    $this->orig = $orig;
    $this->closing = $closing;
}
RSS feed
Powered by Drupal