36
36
* @author Chris Boulton <[email protected] >
37
37
* @copyright (c) 2009 Chris Boulton
38
38
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
39
- * @version 1.2
39
+ * @version 1.3
40
40
* @link https://github.com/JBlond/php-diff
41
41
*/
42
42
@@ -98,11 +98,11 @@ public function render()
98
98
return $ html ;
99
99
}
100
100
101
-
101
+
102
102
/**
103
103
* Generates a string representation of a predefined table and its head with
104
104
* titles from options.
105
- *
105
+ *
106
106
* @return string Html code representation of the table's header.
107
107
*/
108
108
private function generateTableHeader ()
@@ -120,7 +120,7 @@ private function generateTableHeader()
120
120
121
121
/**
122
122
* Generates a string representation of empty table body.
123
- *
123
+ *
124
124
* @return string Html code representing empty table body.
125
125
*/
126
126
private function generateSkippedTable ()
@@ -132,10 +132,10 @@ private function generateSkippedTable()
132
132
$ html .= '</tbody> ' ;
133
133
return $ html ;
134
134
}
135
-
135
+
136
136
/**
137
137
* Generates a string representation of one or more rows of a table of lines of text with no difference.
138
- *
138
+ *
139
139
* @param array &$change Array with data about changes.
140
140
* @return string Html code representing one or more rows of text with no difference.
141
141
*/
@@ -156,7 +156,7 @@ private function generateTableRowsEqual(&$change)
156
156
157
157
/**
158
158
* Generates a string representation of one or more rows of a table of lines, where new text was added.
159
- *
159
+ *
160
160
* @param array &$change Array with data about changes.
161
161
* @return string Html code representing one or more rows of added text.
162
162
*/
@@ -176,7 +176,7 @@ private function generateTableRowsInsert(&$change)
176
176
177
177
/**
178
178
* Generates a string representation of one or more rows of a table of lines, where text was removed.
179
- *
179
+ *
180
180
* @param array &$change Array with data about changes.
181
181
* @return string Html code representing one or more rows of removed text.
182
182
*/
@@ -196,7 +196,7 @@ private function generateTableRowsDelete(&$change)
196
196
197
197
/**
198
198
* Generates a string representation of one or more rows of a table of lines, where text was partially modified.
199
- *
199
+ *
200
200
* @param array &$change Array with data about changes.
201
201
* @return string Html code representing one or more rows of modified.
202
202
*/
0 commit comments