3636 * @author Chris Boulton <[email protected] > 3737 * @copyright (c) 2009 Chris Boulton
3838 * @license New BSD License http://www.opensource.org/licenses/bsd-license.php
39- * @version 1.2
39+ * @version 1.3
4040 * @link https://github.com/JBlond/php-diff
4141 */
4242
@@ -98,11 +98,11 @@ public function render()
9898 return $ html ;
9999 }
100100
101-
101+
102102 /**
103103 * Generates a string representation of a predefined table and its head with
104104 * titles from options.
105- *
105+ *
106106 * @return string Html code representation of the table's header.
107107 */
108108 private function generateTableHeader ()
@@ -120,7 +120,7 @@ private function generateTableHeader()
120120
121121 /**
122122 * Generates a string representation of empty table body.
123- *
123+ *
124124 * @return string Html code representing empty table body.
125125 */
126126 private function generateSkippedTable ()
@@ -132,10 +132,10 @@ private function generateSkippedTable()
132132 $ html .= '</tbody> ' ;
133133 return $ html ;
134134 }
135-
135+
136136 /**
137137 * Generates a string representation of one or more rows of a table of lines of text with no difference.
138- *
138+ *
139139 * @param array &$change Array with data about changes.
140140 * @return string Html code representing one or more rows of text with no difference.
141141 */
@@ -156,7 +156,7 @@ private function generateTableRowsEqual(&$change)
156156
157157 /**
158158 * Generates a string representation of one or more rows of a table of lines, where new text was added.
159- *
159+ *
160160 * @param array &$change Array with data about changes.
161161 * @return string Html code representing one or more rows of added text.
162162 */
@@ -176,7 +176,7 @@ private function generateTableRowsInsert(&$change)
176176
177177 /**
178178 * Generates a string representation of one or more rows of a table of lines, where text was removed.
179- *
179+ *
180180 * @param array &$change Array with data about changes.
181181 * @return string Html code representing one or more rows of removed text.
182182 */
@@ -196,7 +196,7 @@ private function generateTableRowsDelete(&$change)
196196
197197 /**
198198 * Generates a string representation of one or more rows of a table of lines, where text was partially modified.
199- *
199+ *
200200 * @param array &$change Array with data about changes.
201201 * @return string Html code representing one or more rows of modified.
202202 */
0 commit comments