1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00

Remove fixable flag for Complexity issues (#4742)

This commit is contained in:
orklah 2020-11-30 14:43:18 +01:00 committed by Daniil Gentili
parent 8a4ec20d7f
commit edb6343fce
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -719,8 +719,7 @@ class StatementsAnalyzer extends SourceAnalyzer
. ' (method graph size = ' . $count .', average path length = ' . round($mean). ')', . ' (method graph size = ' . $count .', average path length = ' . round($mean). ')',
$function_storage->location $function_storage->location
), ),
$this->getSuppressedIssues(), $this->getSuppressedIssues()
true
)) { )) {
// fall through // fall through
} }
@ -731,8 +730,7 @@ class StatementsAnalyzer extends SourceAnalyzer
. ' (method graph size = ' . $count .', average path length = ' . round($mean) . ')', . ' (method graph size = ' . $count .', average path length = ' . round($mean) . ')',
$function_storage->location $function_storage->location
), ),
$this->getSuppressedIssues(), $this->getSuppressedIssues()
true
)) { )) {
// fall through // fall through
} }