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

Breadcrumb

  1. Drupal Core 11.1.x

DiffOpChange.php

Namespace

Drupal\Component\Diff\Engine

File

core/lib/Drupal/Component/Diff/Engine/DiffOpChange.php

View source
<?php

namespace Drupal\Component\Diff\Engine;


/**
 * @todo document
 * @private
 * @subpackage DifferenceEngine
 */
class DiffOpChange extends DiffOp {
    public $type = 'change';
    public function __construct($orig, $closing) {
        $this->orig = $orig;
        $this->closing = $closing;
    }

}

Classes

Title Deprecated Summary
DiffOpChange @todo document @private @subpackage DifferenceEngine
RSS feed
Powered by Drupal