Skip to content

Commit bbd3f38

Browse files
committed
Property initializer is redundant
1 parent 6de7325 commit bbd3f38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/jblond/Diff/SequenceMatcher.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ class SequenceMatcher
2525
* @var string|array Either a string or an array containing a callback function to determine
2626
* if a line is "junk" or not.
2727
*/
28-
private $junkCallback = null;
28+
private $junkCallback;
2929

3030
/**
3131
* @var array The first sequence to compare against.
3232
*/
33-
private $old = array();
33+
private $old;
3434

3535
/**
3636
* @var array The second sequence.
3737
*/
38-
private $new = array();
38+
private $new;
3939

4040
/**
4141
* @var array Array of characters that are considered junk from the second sequence. Characters are the array key.

0 commit comments

Comments
 (0)