php - Doxygen: @var using namespaces -


i'm starting use doxygen document php code. see following example:

namespace \myclasses;  class order {     /**      * description      *      * @var \myclasses\customer $customer      */     protected $customer; } 

the @var command renders myclasses customer myclasses\order::$customer type instead of \myclasses\customer myclasses\order::$customer correct, leaving namespace intact. there way achieve this? putting 2 backslashes \\myclasses\\customerdoesn't work either.

@param on other hand seems work namespaces.

i'm using latest version 1.8.13. config default.


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -