File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -83,14 +83,14 @@ class Diff
83
83
/**
84
84
* The constructor.
85
85
*
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.
88
88
* @param array $options Array for the options
89
89
*/
90
- public function __construct (array $ a , array $ b , array $ options = array ())
90
+ public function __construct (array $ oldArray , array $ newArray , array $ options = array ())
91
91
{
92
- $ this ->old = $ a ;
93
- $ this ->new = $ b ;
92
+ $ this ->old = $ oldArray ;
93
+ $ this ->new = $ newArray ;
94
94
95
95
if (is_array ($ options )) {
96
96
$ this ->options = array_merge ($ this ->defaultOptions , $ options );
You can’t perform that action at this time.
0 commit comments