mediawiki-extensions-Cite/.phan/config.php
Umherirrender e009aa5ee5 build: Remove suppression of PhanUndeclaredProperty for Parser property
Follow-Up: I701a27459704839f9f996a171b6982ed17cdd00b
Change-Id: I23c14835e5e3b60d21100e835039b8c9b39c72d3
2024-04-16 23:08:04 +02:00

30 lines
805 B
PHP

<?php
$cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
/**
* 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 src/DOM in favour of .phan/stubs/DomImpl.php
wfCollectPhpFiles( "{$VP}/vendor/wikimedia/parsoid/src/DOM", $cfg['exclude_file_list'] );
return $cfg;