You are here

DiffOpCopy.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Component/Diff/Engine/DiffOpCopy.php

File

core/lib/Drupal/Component/Diff/Engine/DiffOpCopy.php
View source
<?php

namespace Drupal\Component\Diff\Engine;


/**
 * @todo document
 * @private
 * @subpackage DifferenceEngine
 */
class DiffOpCopy extends DiffOp {
  public $type = 'copy';
  public function __construct($orig, $closing = FALSE) {
    if (!is_array($closing)) {
      $closing = $orig;
    }
    $this->orig = $orig;
    $this->closing = $closing;
  }
  public function reverse() {
    return new DiffOpCopy($this->closing, $this->orig);
  }

}

Classes

Namesort descending Description
DiffOpCopy @todo document @private @subpackage DifferenceEngine