Text_Diff_Op_add{}
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Usage
$Text_Diff_Op_add = new Text_Diff_Op_add(); // use class methods
Methods
- public Text_Diff_Op_add( $lines )
- public __construct( $lines )
- public reverse()
Notes
- Package: Text_Diff
Text_Diff_Op_add{} Text Diff Op add{} code WP 6.7.1
class Text_Diff_Op_add extends Text_Diff_Op { /** * PHP5 constructor. */ function __construct( $lines ) { $this->final = $lines; $this->orig = false; } /** * PHP4 constructor. */ public function Text_Diff_Op_add( $lines ) { self::__construct( $lines ); } function &reverse() { $reverse = new Text_Diff_Op_delete($this->final); return $reverse; } }