function DiffFormatter::_changed in Diff 6
Same name and namespace in other branches
- 5.2 DiffEngine.php \DiffFormatter::_changed()
- 5 DiffEngine.php \DiffFormatter::_changed()
- 6.2 DiffEngine.php \DiffFormatter::_changed()
- 7.3 DiffEngine.php \DiffFormatter::_changed()
- 7.2 DiffEngine.php \DiffFormatter::_changed()
1 call to DiffFormatter::_changed()
1 method overrides DiffFormatter::_changed()
File
- ./
DiffEngine.php, line 883
Class
- DiffFormatter
- A class to format Diffs
Code
function _changed($orig, $closing) {
$this
->_deleted($orig);
echo "---\n";
$this
->_added($closing);
}