Remove ObjectFactory
[lhc/web/wiklou.git] / .phan / config.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 $cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
22
23 $cfg['file_list'] = array_merge(
24 $cfg['file_list'],
25 function_exists( 'register_postsend_function' ) ? [] : [ '.phan/stubs/hhvm.php' ],
26 function_exists( 'wikidiff2_do_diff' ) ? [] : [ '.phan/stubs/wikidiff.php' ],
27 class_exists( PEAR::class ) ? [] : [ '.phan/stubs/mail.php' ],
28 defined( 'PASSWORD_ARGON2I' ) ? [] : [ '.phan/stubs/password.php' ],
29 // Per composer.json, PHPUnit 6 is used for PHP 7.0+, PHPUnit 4 otherwise.
30 // Load the interface for the version of PHPUnit that isn't installed.
31 // Phan only supports PHP 7.0+ (and not HHVM), so we only need to stub PHPUnit 4.
32 class_exists( PHPUnit_TextUI_Command::class ) ? [] : [ '.phan/stubs/phpunit4.php' ],
33 class_exists( ProfilerExcimer::class ) ? [] : [ '.phan/stubs/excimer.php' ],
34 [
35 'maintenance/7zip.inc',
36 'maintenance/cleanupTable.inc',
37 'maintenance/CodeCleanerGlobalsPass.inc',
38 'maintenance/commandLine.inc',
39 'maintenance/sqlite.inc',
40 'maintenance/userDupes.inc',
41 'maintenance/language/checkLanguage.inc',
42 'maintenance/language/languages.inc',
43 ]
44 );
45
46 $cfg['autoload_internal_extension_signatures'] = [
47 'memcached' => '.phan/internal_stubs/memcached.phan_php',
48 'oci8' => '.phan/internal_stubs/oci8.phan_php',
49 'sqlsrv' => '.phan/internal_stubs/sqlsrv.phan_php',
50 'tideways' => '.phan/internal_stubs/tideways.phan_php',
51 ];
52
53 $cfg['directory_list'] = [
54 'includes/',
55 'languages/',
56 'maintenance/',
57 'mw-config/',
58 'resources/',
59 'vendor/',
60 '.phan/stubs/',
61 ];
62
63 $cfg['exclude_analysis_directory_list'] = [
64 'vendor/',
65 '.phan/stubs/',
66 // The referenced classes are not available in vendor, only when
67 // included from composer.
68 'includes/composer/',
69 // Directly references classes that only exist in Translate extension
70 'maintenance/language/',
71 // External class
72 'includes/libs/jsminplus.php',
73 ];
74
75 $cfg['suppress_issue_types'] = array_merge( $cfg['suppress_issue_types'], [
76 // approximate error count: 18
77 "PhanAccessMethodInternal",
78 // approximate error count: 17
79 "PhanCommentParamOnEmptyParamList",
80 // approximate error count: 29
81 "PhanCommentParamWithoutRealParam",
82 // approximate error count: 2
83 "PhanCompatibleNegativeStringOffset",
84 // approximate error count: 21
85 "PhanParamReqAfterOpt",
86 // approximate error count: 26
87 "PhanParamSignatureMismatch",
88 // approximate error count: 4
89 "PhanParamSignatureMismatchInternal",
90 // approximate error count: 127
91 "PhanParamTooMany",
92 // approximate error count: 2
93 "PhanTraitParentReference",
94 // approximate error count: 30
95 "PhanTypeArraySuspicious",
96 // approximate error count: 27
97 "PhanTypeArraySuspiciousNullable",
98 // approximate error count: 26
99 "PhanTypeComparisonFromArray",
100 // approximate error count: 63
101 "PhanTypeInvalidDimOffset",
102 // approximate error count: 7
103 "PhanTypeInvalidLeftOperandOfIntegerOp",
104 // approximate error count: 2
105 "PhanTypeInvalidRightOperandOfIntegerOp",
106 // approximate error count: 154
107 "PhanTypeMismatchArgument",
108 // approximate error count: 27
109 "PhanTypeMismatchArgumentInternal",
110 // approximate error count: 2
111 "PhanTypeMismatchDimEmpty",
112 // approximate error count: 27
113 "PhanTypeMismatchDimFetch",
114 // approximate error count: 10
115 "PhanTypeMismatchForeach",
116 // approximate error count: 77
117 "PhanTypeMismatchProperty",
118 // approximate error count: 84
119 "PhanTypeMismatchReturn",
120 // approximate error count: 12
121 "PhanTypeObjectUnsetDeclaredProperty",
122 // approximate error count: 9
123 "PhanTypeSuspiciousNonTraversableForeach",
124 // approximate error count: 3
125 "PhanTypeSuspiciousStringExpression",
126 // approximate error count: 22
127 "PhanUndeclaredConstant",
128 // approximate error count: 3
129 "PhanUndeclaredInvokeInCallable",
130 // approximate error count: 237
131 "PhanUndeclaredMethod",
132 // approximate error count: 846
133 "PhanUndeclaredProperty",
134 // approximate error count: 2
135 "PhanUndeclaredVariableAssignOp",
136 // approximate error count: 55
137 "PhanUndeclaredVariableDim",
138 ] );
139
140 $cfg['ignore_undeclared_variables_in_global_scope'] = true;
141 $cfg['globals_type_map']['IP'] = 'string';
142
143 return $cfg;