From: Timo Tijhof Date: Thu, 5 Sep 2019 15:22:16 +0000 (+0100) Subject: docs: Add support for @inheritDoc (alias for @inheritdoc) X-Git-Tag: 1.34.0-rc.0~380^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=83a820e0d608baa7d3e17478d795b67d26e988e3;p=lhc%2Fweb%2Fwiklou.git docs: Add support for @inheritDoc (alias for @inheritdoc) 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 --- 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=" \