From 83a820e0d608baa7d3e17478d795b67d26e988e3 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Thu, 5 Sep 2019 16:22:16 +0100 Subject: [PATCH] docs: Add support for @inheritDoc (alias for @inheritdoc) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Lots of methods are missing documentation for methods in favour of an unhelpful description text containing "@inheritDocs", leading to warnings in CI during the doc building stage: > mediawiki/includes/resourceloader/ResourceLoaderLessVarFileModule.php:9: > warning: Found unknown command '\inheritDoc' Before: > ◆ ResourceLoaderLessVarFileModule::getMessages ( ) > Description > @inheritDoc > > Reimplemented from ResourceLoaderFileModule. > Definition at line 26 of file ResourceLoaderLessVarFileModule.php. After: > ◆ ResourceLoaderLessVarFileModule::getMessages ( ) > Description > Gets list of message keys used by this module. > > Returns > array List of message keys > > Reimplemented from ResourceLoaderFileModule. > Definition at line 26 of file ResourceLoaderLessVarFileModule.php. Bug: T219001 Bug: T232104 Change-Id: I7f133c10acca084239a158c63c08b71e709404c3 --- maintenance/Doxyfile | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/Doxyfile b/maintenance/Doxyfile index e5a8d98e1d..d52f232e45 100644 --- a/maintenance/Doxyfile +++ b/maintenance/Doxyfile @@ -55,6 +55,7 @@ ALIASES = "type{1}= \1 :" \ "protected=\access protected" \ "copyright=\note" \ "license=\note" \ + "inheritDoc=\inheritdoc" \ "codeCoverageIgnore=" \ "codingStandardsIgnoreStart=" \ "group=" \ -- 2.20.1