Text_Diff_Op_change{}
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_change = new Text_Diff_Op_change(); // use class methods
Methods
- public Text_Diff_Op_change( $orig, $final )
- public __construct( $orig, $final )
- public reverse()
Notes
- Package: Text_Diff
Text_Diff_Op_change{} Text Diff Op change{} code WP 6.7.1
class Text_Diff_Op_change extends Text_Diff_Op { /** * PHP5 constructor. */ function __construct( $orig, $final ) { $this->orig = $orig; $this->final = $final; } /** * PHP4 constructor. */ public function Text_Diff_Op_change( $orig, $final ) { self::__construct( $orig, $final ); } function &reverse() { $reverse = new Text_Diff_Op_change($this->final, $this->orig); return $reverse; } }