MediaWiki REL1_34
DiffOpAdd.php
Go to the documentation of this file.
1<?php
2
35class DiffOpAdd extends DiffOp {
36 public $type = 'add';
37
38 public function __construct( $lines ) {
39 $this->closing = $lines;
40 $this->orig = false;
41 }
42
46 public function reverse() {
47 return new DiffOpDelete( $this->closing );
48 }
49}
Extends DiffOp.
Definition DiffOpAdd.php:35
__construct( $lines)
Definition DiffOpAdd.php:38
Extends DiffOp.
The base class for all other DiffOp classes.
Definition DiffOp.php:37
$lines
Definition router.php:61