Skip to content

Commit 89f7feb

Browse files
committed
increase version number
1 parent c6f3745 commit 89f7feb

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

lib/Diff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @author Chris Boulton <[email protected]>
4040
* @copyright (c) 2009 Chris Boulton
4141
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
42-
* @version 1.2
42+
* @version 1.3
4343
* @link https://github.com/JBlond/php-diff
4444
*/
4545

lib/Diff/Renderer/Abstract.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

lib/Diff/Renderer/Html/Array.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

lib/Diff/Renderer/Html/Inline.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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
*/

lib/Diff/Renderer/Html/SideBySide.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

@@ -99,7 +99,7 @@ public function render()
9999
/**
100100
* Generates a string representation of a predefined table and its head with
101101
* titles from options.
102-
*
102+
*
103103
* @return string Html code representation of the table's header.
104104
*/
105105
private function generateTableHeader()
@@ -116,7 +116,7 @@ private function generateTableHeader()
116116

117117
/**
118118
* Generates a string representation of empty table body.
119-
*
119+
*
120120
* @return string Html code representing empty table body.
121121
*/
122122
private function generateSkippedTable()
@@ -130,7 +130,7 @@ private function generateSkippedTable()
130130

131131
/**
132132
* Generates a string representation of one or more rows of a table of lines of text with no difference.
133-
*
133+
*
134134
* @param array &$change Array with data about changes.
135135
* @return string Html code representing one or more rows of text with no difference.
136136
*/
@@ -152,7 +152,7 @@ private function generateTableRowsEqual(&$change)
152152

153153
/**
154154
* Generates a string representation of one or more rows of a table of lines, where new text was added.
155-
*
155+
*
156156
* @param array &$change Array with data about changes.
157157
* @return string Html code representing one or more rows of added text.
158158
*/
@@ -173,7 +173,7 @@ private function generateTableRowsInsert(&$change)
173173

174174
/**
175175
* Generates a string representation of one or more rows of a table of lines, where text was removed.
176-
*
176+
*
177177
* @param array &$change Array with data about changes.
178178
* @return string Html code representing one or more rows of removed text.
179179
*/
@@ -194,7 +194,7 @@ private function generateTableRowsDelete(&$change)
194194

195195
/**
196196
* Generates a string representation of one or more rows of a table of lines, where text was partially modified.
197-
*
197+
*
198198
* @param array &$change Array with data about changes.
199199
* @return string Html code representing one or more rows of modified.
200200
*/

lib/Diff/Renderer/Text/Context.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

lib/Diff/Renderer/Text/Unified.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

lib/Diff/SequenceMatcher.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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

0 commit comments

Comments
 (0)