'.phan/internal_stubs/memcached.phan_php', 'oci8' => '.phan/internal_stubs/oci8.phan_php', 'sqlsrv' => '.phan/internal_stubs/sqlsrv.phan_php', 'tideways' => '.phan/internal_stubs/tideways.phan_php', ]; $cfg['directory_list'] = [ 'includes/', 'languages/', 'maintenance/', 'mw-config/', 'resources/', 'vendor/', '.phan/stubs/', ]; $cfg['exclude_analysis_directory_list'] = [ 'vendor/', '.phan/stubs/', // The referenced classes are not available in vendor, only when // included from composer. 'includes/composer/', // Directly references classes that only exist in Translate extension 'maintenance/language/', // External class 'includes/libs/jsminplus.php', ]; $cfg['suppress_issue_types'] = array_merge( $cfg['suppress_issue_types'], [ // approximate error count: 18 "PhanAccessMethodInternal", // approximate error count: 17 "PhanCommentParamOnEmptyParamList", // approximate error count: 30 "PhanCommentParamWithoutRealParam", // approximate error count: 2 "PhanCompatibleNegativeStringOffset", // approximate error count: 1 "PhanEmptyFQSENInCallable", // approximate error count: 1 "PhanInvalidCommentForDeclarationType", // approximate error count: 6 "PhanNonClassMethodCall", // approximate error count: 21 "PhanParamReqAfterOpt", // approximate error count: 27 "PhanParamSignatureMismatch", // approximate error count: 4 "PhanParamSignatureMismatchInternal", // approximate error count: 1 "PhanParamSignatureRealMismatchTooFewParameters", // approximate error count: 1 "PhanParamSuspiciousOrder", // approximate error count: 127 "PhanParamTooMany", // approximate error count: 2 "PhanParamTooManyCallable", // approximate error count: 1 "PhanParamTooManyInternal", // approximate error count: 2 "PhanPluginDuplicateExpressionBinaryOp", // approximate error count: 2 "PhanTraitParentReference", // approximate error count: 27 "PhanTypeArraySuspicious", // approximate error count: 33 "PhanTypeArraySuspiciousNullable", // approximate error count: 26 "PhanTypeComparisonFromArray", // approximate error count: 2 "PhanTypeComparisonToArray", // approximate error count: 2 "PhanTypeExpectedObjectOrClassName", // approximate error count: 7 "PhanTypeExpectedObjectPropAccess", // approximate error count: 3 "PhanTypeInstantiateAbstract", // approximate error count: 62 "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 "PhanTypeMismatchArgument", // approximate error count: 28 "PhanTypeMismatchArgumentInternal", // approximate error count: 1 "PhanTypeMismatchBitwiseBinaryOperands", // approximate error count: 2 "PhanTypeMismatchDimEmpty", // approximate error count: 29 "PhanTypeMismatchDimFetch", // approximate error count: 10 "PhanTypeMismatchForeach", // approximate error count: 77 "PhanTypeMismatchProperty", // approximate error count: 88 "PhanTypeMismatchReturn", // approximate error count: 43 "PhanTypeMissingReturn", // approximate error count: 1 "PhanTypeNoAccessiblePropertiesForeach", // approximate error count: 4 "PhanTypeNonVarPassByRef", // approximate error count: 12 "PhanTypeObjectUnsetDeclaredProperty", // approximate error count: 9 "PhanTypeSuspiciousNonTraversableForeach", // approximate error count: 3 "PhanTypeSuspiciousStringExpression", // approximate error count: 22 "PhanUndeclaredConstant", // approximate error count: 3 "PhanUndeclaredInvokeInCallable", // approximate error count: 242 "PhanUndeclaredMethod", // approximate error count: 847 "PhanUndeclaredProperty", // approximate error count: 2 "PhanUndeclaredVariableAssignOp", // approximate error count: 55 "PhanUndeclaredVariableDim", // approximate error count: 4 "PhanUnextractableAnnotationElementName", // approximate error count: 4 "PhanUnextractableAnnotationSuffix", ] ); $cfg['ignore_undeclared_variables_in_global_scope'] = true; $cfg['globals_type_map']['IP'] = 'string'; return $cfg;