Skip to content

Commit

Permalink
better description
Browse files Browse the repository at this point in the history
  • Loading branch information
Hidanio committed Dec 6, 2024
1 parent a17ae19 commit bb5ad52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linter/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func addBuiltinCheckers(reg *CheckersRegistry) {
Name: "notExplicitNullableParam",
Default: true,
Quickfix: true,
Comment: "Report not nullable param can be null.",
Comment: "Report not nullable param with explicit null default value.",
Before: `function f(string $str = null);`,
After: `function f(?string $str = null);`,
},
Expand Down

0 comments on commit bb5ad52

Please sign in to comment.