Code Duplication    Length = 8-8 lines in 2 locations

include/Text_Diff_Renderer_inline.php 2 locations

@@ 100-107 (lines=8) @@
97
     * @param $lines
98
     * @return string
99
     */
100
    public function _added($lines)
101
    {
102
        array_walk($lines, array(&$this, '_encode'));
103
        $lines[0]                 = $this->_ins_prefix . $lines[0];
104
        $lines[count($lines) - 1] .= $this->_ins_suffix;
105
106
        return $this->_lines($lines, ' ', false);
107
    }
108
109
    /**
110
     * @param         $lines
@@ 114-121 (lines=8) @@
111
     * @param  bool   $words
112
     * @return string
113
     */
114
    public function _deleted($lines, $words = false)
115
    {
116
        array_walk($lines, array(&$this, '_encode'));
117
        $lines[0]                 = $this->_del_prefix . $lines[0];
118
        $lines[count($lines) - 1] .= $this->_del_suffix;
119
120
        return $this->_lines($lines, ' ', false);
121
    }
122
123
    /**
124
     * @param $orig