File tree 1 file changed +17
-7
lines changed
1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,6 @@ public function generateDiffHeader(): string;
41
41
*/
42
42
public function generateBlockHeader (array $ changes ): string ;
43
43
44
- /**
45
- * Generate a string representation of lines that are skipped in the diff view.
46
- *
47
- * @return string Representation of skipped lines.
48
- */
49
- public function generateSkippedLines (): string ;
50
-
51
44
/**
52
45
* Generate a string representation of lines without differences between both versions.
53
46
*
@@ -69,6 +62,23 @@ public function generateLinesEqual(array $changes): string;
69
62
*/
70
63
public function generateLinesInsert (array $ changes ): string ;
71
64
65
+ /**
66
+ * Generate a string representation of lines that are skipped in the diff view.
67
+ *
68
+ * @return string Representation of skipped lines.
69
+ */
70
+ public function generateSkippedLines (): string ;
71
+
72
+ /**
73
+ * Generate a string representation of lines with ignored differences between both versions.
74
+ *
75
+ * @param array $changes Contains the op-codes about the changes between two blocks of text.
76
+ *
77
+ * @return string Text with no difference.
78
+ * @todo: Uncomment once deprecation period is over.
79
+ */
80
+ // public function generateLinesIgnore(array $changes): string;
81
+
72
82
/**
73
83
* Generate a string representation of lines that are removed from the 2nd version.
74
84
*
You can’t perform that action at this time.
0 commit comments