Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php \Drupal\Component\Diff\Engine\DiffOpDelete::reverse()
  2. 9 core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php \Drupal\Component\Diff\Engine\DiffOpDelete::reverse()

Overrides DiffOp::reverse

Deprecated

in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement.

See also

https://www.drupal.org/node/3337942

File

core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php, line 24

Class

DiffOpDelete
@todo document @private @subpackage DifferenceEngine

Namespace

Drupal\Component\Diff\Engine

Code

public function reverse() {
  @trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3337942', E_USER_DEPRECATED);
  return new DiffOpAdd($this->orig);
}