mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-24 08:14:09 +00:00
1b2e35a108
pcntl cannot installed on windows, use the stub shipped with mediawiki/core to provide the missing constant Change-Id: I974110db1cf1cf98e860a5589d0d3c280488c3aa
36 lines
762 B
PHP
36 lines
762 B
PHP
<?php
|
|
|
|
$cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
|
|
|
$cfg['autoload_internal_extension_signatures'] = [
|
|
'pcntl' => $IP . '/.phan/internal_stubs/pcntl.phan_php',
|
|
];
|
|
|
|
$cfg['file_list'][] = 'Scribunto.constants.php';
|
|
|
|
$cfg['directory_list'] = array_merge(
|
|
$cfg['directory_list'],
|
|
[
|
|
'vendor/mediawiki/lua-sandbox/stubs',
|
|
'../../extensions/SyntaxHighlight_GeSHi',
|
|
]
|
|
);
|
|
|
|
$cfg['exclude_analysis_directory_list'] = array_merge(
|
|
$cfg['exclude_analysis_directory_list'],
|
|
[
|
|
'vendor/mediawiki/lua-sandbox/stubs',
|
|
'../../extensions/SyntaxHighlight_GeSHi',
|
|
]
|
|
);
|
|
|
|
$cfg['suppress_issue_types'] = array_merge(
|
|
$cfg['suppress_issue_types'],
|
|
[
|
|
// \Parser->scribunto_engine
|
|
'PhanUndeclaredProperty',
|
|
]
|
|
);
|
|
|
|
return $cfg;
|