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
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 );
You can’t perform that action at this time.
0 commit comments