mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Eclude some phan warnings
This commit is contained in:
parent
c0d2632171
commit
92bc6c9102
|
|
@ -421,6 +421,7 @@ return [
|
|||
|
||||
'PhanCompatibleNegativeStringOffset', // return false positive
|
||||
'PhanPluginConstantVariableBool', // a lot of false positive, in most cases, we want to keep the code as it is
|
||||
'PhanTypeArraySuspiciousNullable', // this option costs more time to be supported than it solves time
|
||||
'PhanTypeInvalidDimOffset', // this option costs more time to be supported than it solves time
|
||||
'PhanTypeObjectUnsetDeclaredProperty',
|
||||
'PhanTypePossiblyInvalidDimOffset', // a lot of false positive, in most cases, we want to keep the code as it is
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ $config['suppress_issue_types'] = [
|
|||
|
||||
'PhanCompatibleNegativeStringOffset', // return false positive
|
||||
'PhanPluginConstantVariableBool', // a lot of false positive, in most cases, we want to keep the code as it is
|
||||
'PhanTypeArraySuspiciousNullable', // this option costs more time to be supported than it solves time
|
||||
'PhanTypeInvalidDimOffset', // this option costs more time to be supported than it solves time
|
||||
'PhanTypeObjectUnsetDeclaredProperty',
|
||||
'PhanTypePossiblyInvalidDimOffset', // a lot of false positive, in most cases, we want to keep the code as it is
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user