X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=.phan%2Fconfig.php;h=8746ada38425ce885c47a2f3a19f8b196eaffc0d;hb=2c046e1b6c80c57ec67b507d00e5add7cf958b7c;hp=8b9aae7bd33f7b5102d0c91bbe17071228a18dfd;hpb=4aabbfdb0f81356a6da52733313caf62c623afea;p=lhc%2Fweb%2Fwiklou.git diff --git a/.phan/config.php b/.phan/config.php index 8b9aae7bd3..8746ada384 100644 --- a/.phan/config.php +++ b/.phan/config.php @@ -32,7 +32,6 @@ $cfg['file_list'] = array_merge( class_exists( PHPUnit_TextUI_Command::class ) ? [] : [ '.phan/stubs/phpunit4.php' ], class_exists( ProfilerExcimer::class ) ? [] : [ '.phan/stubs/excimer.php' ], [ - 'maintenance/7zip.inc', 'maintenance/cleanupTable.inc', 'maintenance/CodeCleanerGlobalsPass.inc', 'maintenance/commandLine.inc', @@ -44,8 +43,12 @@ $cfg['file_list'] = array_merge( ); $cfg['autoload_internal_extension_signatures'] = [ + 'imagick' => '.phan/internal_stubs/imagick.phan_php', 'memcached' => '.phan/internal_stubs/memcached.phan_php', 'oci8' => '.phan/internal_stubs/oci8.phan_php', + 'pcntl' => '.phan/internal_stubs/pcntl.phan_php', + 'redis' => '.phan/internal_stubs/redis.phan_php', + 'sockets' => '.phan/internal_stubs/sockets.phan_php', 'sqlsrv' => '.phan/internal_stubs/sqlsrv.phan_php', 'tideways' => '.phan/internal_stubs/tideways.phan_php', ]; @@ -77,7 +80,7 @@ $cfg['suppress_issue_types'] = array_merge( $cfg['suppress_issue_types'], [ "PhanAccessMethodInternal", // approximate error count: 17 "PhanCommentParamOnEmptyParamList", - // approximate error count: 30 + // approximate error count: 29 "PhanCommentParamWithoutRealParam", // approximate error count: 2 "PhanCompatibleNegativeStringOffset", @@ -90,46 +93,32 @@ $cfg['suppress_issue_types'] = array_merge( $cfg['suppress_issue_types'], [ // approximate error count: 127 "PhanParamTooMany", // approximate error count: 2 - "PhanPluginDuplicateExpressionBinaryOp", - // approximate error count: 2 "PhanTraitParentReference", - // approximate error count: 26 + // approximate error count: 30 "PhanTypeArraySuspicious", - // approximate error count: 33 + // approximate error count: 27 "PhanTypeArraySuspiciousNullable", // approximate error count: 26 "PhanTypeComparisonFromArray", - // approximate error count: 2 - "PhanTypeComparisonToArray", - // approximate error count: 2 - "PhanTypeExpectedObjectOrClassName", - // approximate error count: 7 - "PhanTypeExpectedObjectPropAccess", - // approximate error count: 62 + // approximate error count: 63 "PhanTypeInvalidDimOffset", - // approximate error count: 10 - "PhanTypeInvalidExpressionArrayDestructuring", // approximate error count: 7 "PhanTypeInvalidLeftOperandOfIntegerOp", // approximate error count: 2 - "PhanTypeInvalidRightOperand", - // approximate error count: 2 "PhanTypeInvalidRightOperandOfIntegerOp", - // approximate error count: 152 + // approximate error count: 154 "PhanTypeMismatchArgument", // approximate error count: 27 "PhanTypeMismatchArgumentInternal", - // approximate error count: 1 - "PhanTypeMismatchBitwiseBinaryOperands", // approximate error count: 2 "PhanTypeMismatchDimEmpty", - // approximate error count: 29 + // approximate error count: 27 "PhanTypeMismatchDimFetch", // approximate error count: 10 "PhanTypeMismatchForeach", - // approximate error count: 78 + // approximate error count: 77 "PhanTypeMismatchProperty", - // approximate error count: 85 + // approximate error count: 84 "PhanTypeMismatchReturn", // approximate error count: 12 "PhanTypeObjectUnsetDeclaredProperty", @@ -141,18 +130,14 @@ $cfg['suppress_issue_types'] = array_merge( $cfg['suppress_issue_types'], [ "PhanUndeclaredConstant", // approximate error count: 3 "PhanUndeclaredInvokeInCallable", - // approximate error count: 239 + // approximate error count: 237 "PhanUndeclaredMethod", - // approximate error count: 847 + // approximate error count: 846 "PhanUndeclaredProperty", // approximate error count: 2 "PhanUndeclaredVariableAssignOp", // approximate error count: 55 "PhanUndeclaredVariableDim", - // approximate error count: 3 - "PhanUnextractableAnnotationElementName", - // approximate error count: 4 - "PhanUnextractableAnnotationSuffix", ] ); $cfg['ignore_undeclared_variables_in_global_scope'] = true;