mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-01 03:16:14 +00:00
d245edbb94
Manually import LuaSandbox's git repository as a composer dependency to provide the PHP stubs for phan. Change-Id: I6226b9211f31d829da5a2775c6f5cf3599dd8ebc
34 lines
811 B
PHP
34 lines
811 B
PHP
<?php
|
|
|
|
$cfg = require __DIR__ . '/../../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
|
|
|
$cfg['directory_list'] = array_merge(
|
|
$cfg['directory_list'],
|
|
[
|
|
'./vendor/mediawiki/lua-sandbox/stubs',
|
|
'./../../extensions/SyntaxHighlight_GeSHi',
|
|
]
|
|
);
|
|
$cfg['file_list'][] = './Scribunto.php';
|
|
|
|
$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',
|
|
// \Scribunto_LuaInterpreter::callFunction()
|
|
'PhanParamTooMany',
|
|
// our version of phan doesn't support inheriting doc yet
|
|
'PhanParamSignatureMismatch',
|
|
]
|
|
);
|
|
|
|
return $cfg;
|