File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lib/jblond/Diff/Renderer/Html Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ function ($item) {
244
244
foreach ($ strings as &$ line ) {
245
245
$ line = preg_replace_callback (
246
246
'/(^[ \0\1]*)/ ' ,
247
- function ($ matches ) {
247
+ function ($ matches ) {
248
248
return str_replace (' ' , " " , $ matches [0 ]);
249
249
},
250
250
$ line
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- declare (strict_types = 1 );
3
+ declare (strict_types= 1 );
4
4
5
5
namespace jblond \Diff \Renderer \Html ;
6
6
@@ -42,7 +42,7 @@ public function render(): string
42
42
*
43
43
* @return string HTML code containing the unified differences.
44
44
*/
45
- public function renderHtml ($ changes , $ object = null ) : string
45
+ public function renderHtml ($ changes , $ object = null ): string
46
46
{
47
47
if (empty ($ changes )) {
48
48
//No changes between "old" and "new"
You can’t perform that action at this time.
0 commit comments