Doxygen: how to describe class member variables in php?

后端 未结 7 703
野性不改
野性不改 2020-12-14 19:47

I\'m trying to use doxygen to parse php code into xml output. Doxygen does not parse description of class member variables.

Here is my sample php file:



        
7条回答
  •  离开以前
    2020-12-14 20:38

    It seems to be a bug in Doxygen. I've the same problem with documentation in HTML.

    What currently works is:

    class A
    {
        var $id = 1; /**< Id on page. */
    }
    

    But these comments are not recognized by NetBeans IDE as documentation of field.

提交回复
热议问题