DiffOpChange.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)
  4. *
  5. * Copyright © 2000, 2001 Geoffrey T. Dairiki <dairiki@dairiki.org>
  6. * You may copy this code freely under the conditions of the GPL.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  21. * http://www.gnu.org/copyleft/gpl.html
  22. *
  23. * @file
  24. * @ingroup DifferenceEngine
  25. */
  26. /**
  27. * Extends DiffOp. Used to mark strings that have been
  28. * changed from the first string array (both added and subtracted).
  29. *
  30. * @private
  31. * @ingroup DifferenceEngine
  32. */
  33. class DiffOpChange extends DiffOp {
  34. public $type = 'change';
  35. public function __construct( $orig, $closing ) {
  36. $this->orig = $orig;
  37. $this->closing = $closing;
  38. }
  39. /**
  40. * @return DiffOpChange
  41. */
  42. public function reverse() {
  43. return new DiffOpChange( $this->closing, $this->orig );
  44. }
  45. }