Skip to content

Commit 772f2cc

Browse files
fix: correct syntax error in ScanService.php for constant declaration for PHP < 8.3 (#227) (#230)
1 parent f75dd64 commit 772f2cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Service/ScanService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class ScanService {
1616

17-
private const int SCAN_TIME_SECONDS = 120;
17+
private const SCAN_TIME_SECONDS = 120;
1818

1919
private TagService $tagService;
2020
private VerdictService $verdictService;

0 commit comments

Comments
 (0)