Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Component/Diff/Engine/DiffOpDelete.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Component\Diff\Engine; /** * @todo document * @private * @subpackage DifferenceEngine */ class DiffOpDelete extends DiffOp { public $type = 'delete'; public function __construct($lines) { $this->orig = $lines; $this->closing = FALSE; } public function reverse() { return new DiffOpAdd($this->orig); } }