MediaWiki REL1_32
config.php
Go to the documentation of this file.
1<?php
2
3$cfg = require __DIR__ . '/../../vendor/mediawiki/mediawiki-phan-config/src/config.php';
4
5// Phan gets confused because DOMNode::setAttribute doesn't
6// exist, it's DOMElement::setAttribute, and some functions
7// are documented to return DOMNode but they actually return
8// DOMElement.
9$cfg['suppress_issue_types'][] = 'PhanUndeclaredMethod';
10
11return $cfg;
$cfg
Definition config.php:3