Skip to content

Commit c8ec74b

Browse files
committed
short variable name
1 parent ea72a0a commit c8ec74b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/jblond/Diff/SequenceMatcher.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ public function setOptions($options)
130130
/**
131131
* Set the first and second sequences to use with the sequence matcher.
132132
*
133-
* @param string|array $a A string or array containing the lines to compare against.
134-
* @param string|array $b A string or array containing the lines to compare.
133+
* @param string|array $partA A string or array containing the lines to compare against.
134+
* @param string|array $partB A string or array containing the lines to compare.
135135
*/
136-
public function setSequences($a, $b)
136+
public function setSequences($partA, $partB)
137137
{
138-
$this->setSeq1($a);
139-
$this->setSeq2($b);
138+
$this->setSeq1($partA);
139+
$this->setSeq2($partB);
140140
}
141141

142142
/**

0 commit comments

Comments
 (0)