mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-12-23 12:12:44 +00:00
9 lines
240 B
PHP
9 lines
240 B
PHP
|
<?php
|
||
|
|
||
|
$cfg = require __DIR__ . '/../../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
||
|
$cfg['suppress_issue_types'][] = 'PhanDeprecatedFunction';
|
||
|
// Namespace constants
|
||
|
$cfg['file_list'][] = 'Gadgets.namespaces.php';
|
||
|
|
||
|
return $cfg;
|