We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6241755 + ee25b83 commit 57c0ff0Copy full SHA for 57c0ff0
2 files changed
CHANGELOG.md
@@ -2,6 +2,7 @@
2
=====
3
4
* (feature) Add custom PHPStan rule to detect wrong `Task` class names.
5
+* (improvement) Disable `doctrine.columnType` rule, as it leads to too many false positives in combination with Symfony forms and entities.
6
7
8
2.0.0
phpstan/lib.neon
@@ -33,6 +33,9 @@ parameters:
33
-
34
identifier: method.deprecated
35
path: %currentWorkingDirectory%/tests/*
36
+ # Using this will have a lot of false-positives, as entities are often used as form
37
+ # entries and there the fields need to be nullable.
38
+ - identifier: doctrine.columnType
39
40
rules:
41
- Janus\Phpstan\Rule\TaskRule
0 commit comments