We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550312a commit 962623dCopy full SHA for 962623d
lib/jblond/Diff/SequenceMatcher.php
@@ -150,9 +150,10 @@ public function setSeq1($version1): void
150
*
151
* Also resets internal caches to indicate that, when calling the calculation methods, we need to recalculate them.
152
153
- * @param string|array|void $version2 The sequence to set as the second sequence.
+ * @param string|array $version2 The sequence to set as the second sequence.
154
+ * @return void
155
*/
- public function setSeq2($version2)
156
+ public function setSeq2($version2): void
157
{
158
if (!is_array($version2)) {
159
$version2 = str_split($version2);
0 commit comments