Skip to content

Commit e940dd9

Browse files
committed
avoid short variable names
1 parent 7482c2b commit e940dd9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/jblond/Diff.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ class Diff
8383
/**
8484
* The constructor.
8585
*
86-
* @param array $a Array containing the lines of the first string to compare.
87-
* @param array $b Array containing the lines for the second string to compare.
86+
* @param array $oldArray Array containing the lines of the first string to compare.
87+
* @param array $newArray Array containing the lines for the second string to compare.
8888
* @param array $options Array for the options
8989
*/
90-
public function __construct(array $a, array $b, array $options = array())
90+
public function __construct(array $oldArray, array $newArray, array $options = array())
9191
{
92-
$this->old = $a;
93-
$this->new = $b;
92+
$this->old = $oldArray;
93+
$this->new = $newArray;
9494

9595
if (is_array($options)) {
9696
$this->options = array_merge($this->defaultOptions, $options);

0 commit comments

Comments
 (0)