Skip to content

Commit 2090f98

Browse files
committed
change to new array format
1 parent bbd3f38 commit 2090f98

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
@@ -40,17 +40,17 @@ class SequenceMatcher
4040
/**
4141
* @var array Array of characters that are considered junk from the second sequence. Characters are the array key.
4242
*/
43-
private $junkDict = array();
43+
private $junkDict = [];
4444

4545
/**
4646
* @var array Array of indices that do not contain junk elements.
4747
*/
48-
private $b2j = array();
48+
private $b2j = [];
4949

5050
/**
5151
* @var array
5252
*/
53-
private $options = array();
53+
private $options = [];
5454

5555
/**
5656
* @var null|array

0 commit comments

Comments
 (0)