Skip to content

Commit 01929a7

Browse files
SONARPHP-772: fix parseInt exception (#558)
* check for too long values in exceptions * simplify exceptions condition
1 parent 7817709 commit 01929a7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

php-checks/src/main/java/org/sonar/php/checks/UseOfOctalValueCheck.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ private void checkNumericValue(LiteralTree tree) {
5454
/**
5555
* This rule should not apply to values smaller than 8 and octal values having 3 digits,
5656
* since 3 digits octal values are often used as file permission masks.
57+
* Also values like "03" should not raise an issue because they are used in dates.
5758
*/
5859
private static boolean isException(String value) {
59-
return value.length() == 4 || Integer.parseInt(value) < 8;
60+
return value.length() == 4 || value.length() == 2;
6061
}
6162
}

php-checks/src/test/resources/checks/UseOfOctalValueCheck.php

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
$a = "01234"; // Compliant
1616
$a = 0_1; // Compliant
1717
$a = 0_1234; // Noncompliant
18+
$a = 020000000000; // Noncompliant
1819

1920
//--------------------------
2021
// VariableDeclaration

0 commit comments

Comments
 (0)