You are here

DiffOp.php in Zircon Profile 8.0

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

File

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

/**
 * @file
 * Contains \Drupal\Component\Diff\Engine\DiffOp.
 */
namespace Drupal\Component\Diff\Engine;


/**
 * @todo document
 * @private
 * @subpackage DifferenceEngine
 */
class DiffOp {
  var $type;
  var $orig;
  var $closing;
  public function reverse() {
    trigger_error('pure virtual', E_USER_ERROR);
  }
  public function norig() {
    return $this->orig ? sizeof($this->orig) : 0;
  }
  public function nclosing() {
    return $this->closing ? sizeof($this->closing) : 0;
  }

}

Classes

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