summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ImageMap/tests/phan/config.php
blob: db22766beb4f07e2fa52fe483cd4058fd551b760 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

$cfg = require __DIR__ . '/../../vendor/mediawiki/mediawiki-phan-config/src/config.php';

// Phan gets confused because DOMNode::setAttribute doesn't
// exist, it's DOMElement::setAttribute, and some functions
// are documented to return DOMNode but they actually return
// DOMElement.
$cfg['suppress_issue_types'][] = 'PhanUndeclaredMethod';

return $cfg;