@@ -44,9 +44,6 @@ abstract class AbstractHtml extends AbstractRenderer
44
44
*/
45
45
public const AUTO_FORMAT_CHANGES = true ;
46
46
47
- /**
48
- * {@inheritdoc}
49
- */
50
47
public function getResultForIdenticalsDefault (): string
51
48
{
52
49
return '' ;
@@ -105,19 +102,13 @@ public function getChanges(Differ $differ): array
105
102
return $ changes ;
106
103
}
107
104
108
- /**
109
- * {@inheritdoc}
110
- */
111
105
protected function renderWorker (Differ $ differ ): string
112
106
{
113
107
$ rendered = $ this ->redererChanges ($ this ->getChanges ($ differ ));
114
108
115
109
return $ this ->cleanUpDummyHtmlClosures ($ rendered );
116
110
}
117
111
118
- /**
119
- * {@inheritdoc}
120
- */
121
112
protected function renderArrayWorker (array $ differArray ): string
122
113
{
123
114
$ this ->ensureChangesUseIntTag ($ differArray );
@@ -199,7 +190,7 @@ final protected function formatChanges(array &$changes): void
199
190
200
191
/** @phan-suppress-next-line PhanTypeInvalidLeftOperandOfBitwiseOp */
201
192
if ($ block ['tag ' ] & (SequenceMatcher::OP_REP | SequenceMatcher::OP_DEL )) {
202
- $ block ['old ' ]['lines ' ] = \ str_replace (
193
+ $ block ['old ' ]['lines ' ] = str_replace (
203
194
RendererConstant::HTML_CLOSURES ,
204
195
RendererConstant::HTML_CLOSURES_DEL ,
205
196
$ block ['old ' ]['lines ' ]
@@ -208,7 +199,7 @@ final protected function formatChanges(array &$changes): void
208
199
209
200
/** @phan-suppress-next-line PhanTypeInvalidLeftOperandOfBitwiseOp */
210
201
if ($ block ['tag ' ] & (SequenceMatcher::OP_REP | SequenceMatcher::OP_INS )) {
211
- $ block ['new ' ]['lines ' ] = \ str_replace (
202
+ $ block ['new ' ]['lines ' ] = str_replace (
212
203
RendererConstant::HTML_CLOSURES ,
213
204
RendererConstant::HTML_CLOSURES_INS ,
214
205
$ block ['new ' ]['lines ' ]
@@ -232,10 +223,10 @@ protected function formatLines(array $lines): array
232
223
* we can glue lines into a string and call functions for one time.
233
224
* After that, we split the string back into lines.
234
225
*/
235
- return \ explode (
226
+ return explode (
236
227
RendererConstant::IMPLODE_DELIMITER ,
237
228
$ this ->formatStringFromLines (
238
- \ implode (
229
+ implode (
239
230
RendererConstant::IMPLODE_DELIMITER ,
240
231
$ lines
241
232
)
@@ -288,16 +279,16 @@ protected function expandTabs(string $string, int $tabSize = 4, bool $onlyLeadin
288
279
}
289
280
290
281
if ($ onlyLeadingTabs ) {
291
- return \ preg_replace_callback (
282
+ return preg_replace_callback (
292
283
"/^[ \t]{1,}/mS " , // tabs and spaces may be mixed
293
- function (array $ matches ) use ($ tabSize ): string {
294
- return \ str_replace ("\t" , \ str_repeat (' ' , $ tabSize ), $ matches [0 ]);
284
+ static function (array $ matches ) use ($ tabSize ): string {
285
+ return str_replace ("\t" , str_repeat (' ' , $ tabSize ), $ matches [0 ]);
295
286
},
296
287
$ string
297
288
);
298
289
}
299
290
300
- return \ str_replace ("\t" , \ str_repeat (' ' , $ tabSize ), $ string );
291
+ return str_replace ("\t" , str_repeat (' ' , $ tabSize ), $ string );
301
292
}
302
293
303
294
/**
@@ -309,7 +300,7 @@ function (array $matches) use ($tabSize): string {
309
300
*/
310
301
protected function htmlSafe (string $ string ): string
311
302
{
312
- return \ htmlspecialchars ($ string , \ENT_NOQUOTES , 'UTF-8 ' );
303
+ return htmlspecialchars ($ string , \ENT_NOQUOTES , 'UTF-8 ' );
313
304
}
314
305
315
306
/**
@@ -321,7 +312,7 @@ protected function htmlSafe(string $string): string
321
312
*/
322
313
protected function htmlFixSpaces (string $ string ): string
323
314
{
324
- return \ str_replace (' ' , ' ' , $ string );
315
+ return str_replace (' ' , ' ' , $ string );
325
316
}
326
317
327
318
/**
@@ -333,7 +324,7 @@ protected function htmlFixSpaces(string $string): string
333
324
*/
334
325
protected function htmlReplaceSpacesToHtmlTag (string $ string ): string
335
326
{
336
- return \ strtr ($ string , [
327
+ return strtr ($ string , [
337
328
' ' => '<span class="ch sp"> </span> ' ,
338
329
"\t" => "<span class= \"ch tab \"> \t</span> " ,
339
330
]);
@@ -367,7 +358,7 @@ protected function ensureChangesUseIntTag(array &$changes): void
367
358
*/
368
359
protected function cleanUpDummyHtmlClosures (string $ string ): string
369
360
{
370
- return \ str_replace (
361
+ return str_replace (
371
362
[
372
363
RendererConstant::HTML_CLOSURES_DEL [0 ] . RendererConstant::HTML_CLOSURES_DEL [1 ],
373
364
RendererConstant::HTML_CLOSURES_INS [0 ] . RendererConstant::HTML_CLOSURES_INS [1 ],
0 commit comments