mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-14 19:35:38 +00:00
6b633803c8
Bug: T343859 Change-Id: Ic0d741c192f42a3bd54276259820f25edcb0705b
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
$cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
|
|
|
$cfg['directory_list'] = array_merge(
|
|
$cfg['directory_list'],
|
|
[
|
|
'../../extensions/VisualEditor',
|
|
'../../extensions/Echo',
|
|
'../../extensions/EventLogging',
|
|
'../../extensions/Gadgets',
|
|
'../../extensions/BetaFeatures',
|
|
]
|
|
);
|
|
|
|
$cfg['exclude_analysis_directory_list'] = array_merge(
|
|
$cfg['exclude_analysis_directory_list'],
|
|
[
|
|
'../../extensions/VisualEditor',
|
|
'../../extensions/Echo',
|
|
'../../extensions/EventLogging',
|
|
'../../extensions/Gadgets',
|
|
'../../extensions/BetaFeatures',
|
|
]
|
|
);
|
|
|
|
$cfg['warn_about_undocumented_throw_statements'] = true;
|
|
$cfg['exception_classes_with_optional_throws_phpdoc'] = [
|
|
LogicException::class,
|
|
RuntimeException::class,
|
|
DOMException::class,
|
|
Wikimedia\NormalizedException\NormalizedException::class,
|
|
];
|
|
$cfg['warn_about_undocumented_exceptions_thrown_by_invoked_functions'] = true;
|
|
|
|
/**
|
|
* Quick implementation of a recursive directory list.
|
|
* @param string $dir The directory to list
|
|
* @param ?array &$result Where to put the result
|
|
*/
|
|
function wfCollectPhpFiles( string $dir, ?array &$result = [] ) {
|
|
if ( !is_dir( $dir ) ) {
|
|
return;
|
|
}
|
|
foreach ( scandir( $dir ) as $f ) {
|
|
if ( $f === '.' || $f === '..' ) {
|
|
continue;
|
|
}
|
|
$fullName = $dir . DIRECTORY_SEPARATOR . $f;
|
|
wfCollectPhpFiles( $fullName, $result );
|
|
if ( is_file( $fullName ) && preg_match( '/\.php$/D', $fullName ) ) {
|
|
$result[] = $fullName;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Exclude Parsoid's src/DOM in favour of .phan/stubs/DomImpl.php
|
|
wfCollectPhpFiles( "{$VP}/vendor/wikimedia/parsoid/src/DOM", $cfg['exclude_file_list'] );
|
|
|
|
return $cfg;
|