Manual:mwdoc-filter.php

From mediawiki.org
MediaWiki version:
1.20

Details[edit]

mwdoc-filter.php file is a Doxygen filter to show correct member variable types in documentation.

It has been adapted for MediaWiki to resolve various bugs we experienced from using Doxygen with our coding conventions:

  • We want to allow documenting class members on a single line by documenting them as /** @var SomeType Description here., and in long-form as ‎
    /** 
     * Description here.
     * @var SomeType
    
  • PHP does not support native type-hinting of class members. Instead, we document that using @var in the doc blocks above it. However, Doxygen only supports parsing this from executable code. We achieve this by having the this script filter take the typehint from the doc block and insert it into the source code in front of $myvar, like protected SomeType $myvar. This result is technically invalid PHP code, but Doxygen understands it this way.

Options/Arguments[edit]

This script accepts the path of a PHP file as an argument.

Usage[edit]

php maintenance/mwdoc-filter.php file
ABC.php
<?php

class ABC {
    /** @var array[] Description 1 */
    private $a = [];

    /** @var int Description 2 */
    private $b;

    /** @var ActorStoreFactory Description 3 */
    private $c;
}
Terminal

See also[edit]