Skip to content

Commit e34de6c

Browse files
committed
Remove redundant default values
1 parent 0f65931 commit e34de6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Json5Decoder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ final class Json5Decoder
2626

2727
private $lineNumber = 1;
2828

29-
private $associative = false;
29+
private $associative;
3030

31-
private $maxDepth = 512;
31+
private $maxDepth;
3232

33-
private $castBigIntToString = false;
33+
private $castBigIntToString;
3434

3535
private $depth = 1;
3636

0 commit comments

Comments
 (0)