DiffOp.php
Same filename and directory in other branches
Namespace
Drupal\Component\Diff\EngineFile
-
core/
lib/ Drupal/ Component/ Diff/ Engine/ DiffOp.php
View source
<?php
namespace Drupal\Component\Diff\Engine;
/**
* A diff operation.
*
* @private
* @subpackage DifferenceEngine
*/
class DiffOp {
/**
* The type of operation.
*
* @var string
*/
public $type;
/**
* An array of the original lines.
*
* @var string[]
*/
public $orig;
/**
* An array of the new lines.
*
* @var string[]
*/
public $closing;
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| DiffOp | A diff operation. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.