3
votes
3answers
190 views
how to create phpdoc Tutorial / Extended pages to supplement commented code
I'm trying everything I can to get phpdocumentor to allow me to use the DocBook tutorial format to supplement the documentation it creates:
I am using Eclipse
I've installed phpD …
0
votes
3answers
171 views
Running SH script with sudo for PHPdoc
How can you run the following script in generating docs by PHPdoc?
#1 sudo -code
sudo source makedoc.sh
I get
no command source
#2 without sudo
The problem is that sudo doe …
1
vote
2answers
14 views
Parsing Javascript files with phpDocumentor
I've been playing with phpDocumentor recently and found it quite suitable for my needs. I'm largely working with PHP/HTML/JS/CSS codebases and would like phpDocumentor to parse my …
0
votes
2answers
34 views
What is the purpose of these PHPDOC properties?
In general, the PHPDOC properties are self-explanatory, but I'm having hard time understanding these:
@category - what is this exactly?
@package - could some one provide me examp …
1
vote
4answers
732 views
PHPDoc type hinting for array of objects?
So, in PHPDoc one can specify @var above the member variable declaration to hint at its type. Then an IDE, for ex. PHPEd, will know what type of object it's working with and will b …
1
vote
1answer
13 views
How are PHPDoc comments analyzed in PHP?
In frameworks like Zend Framework (or extensions of it), it is sometimes possible to pass information like type hints to the framework code by using PHPDoc style comments.
I canno …
2
votes
2answers
39 views
Declaring lots of variables for phpdoc without starting each with /**
I have objects with many variables that I declare and explain in the comments. I am commenting very thoroughly for later processing using phpDoc, however I have no experience with …
0
votes
1answer
45 views
Does vim provide tiered intellisense support through phpdoc?
The one thing I really miss in vim is a tiered intellisense support, just like we have one in PHP Eclipse.
For example:
/**
* Get the config object
*
* @return Config
*/
publ …
2
votes
1answer
74 views
phpdoc datatype and namespaces
What is the current status of using namespaces in phpdocs datatypes.
eg:
* @param string|Vendor\SomeClass $parameter
1
vote
2answers
54 views
How to escape phpdoc comment in phpdoc comment?
I would like to know how to escape phpdoc comments within a phpdoc comment.
For example, how would I have to write this:
/**
* Some documentation...
*
* <code>
* /**
* …
0
votes
2answers
52 views
Web Based Documentation Generator / Editor
Hello all. I'm looking for a good documentation generator that supports various programming languages, but PHP is a must. The thing is, I'm looking for it to do a very specific t …
1
vote
1answer
130 views
Integrating Images in a Docbook Manual in conjunction with phpDocumentor
Hi,
is there a possibility to include images into a docbook manual compiled by phpDocumentor?
I tried both:
<mediaobject>
<imageobject>
<imagedata fileref="pay …
2
votes
1answer
68 views
phpdoc standard for setting default value of an optional parameter?
Example:
/**
* This function will determine whether or not one string starts with another string.
* @param string $haystack <p>The string that needs to be checked.</p&g …
1
vote
1answer
122 views
Finding correct format for PHP comments in Doxygen
Which is the correct doxygen format for PHP comments?
#1
/** Create HTML for tags
* @param string @tags
*/
#2
/**
* Create HTML for tags
* @param string @tags
…
1
vote
1answer
58 views
Solving error messages given by PHPdoc
How can you solve the following error messages given by PHPdoc?
I run madedoc.sh by the following command
Command
sudo ./makedoc.sh
I get
Error messages
PHP Version 5.2.6-3u …
