Tagged Questions

4
votes
1answer
126 views

What is the status of PHPDoc?

I never cared much about documenting my code before, but recently I started working on an open source project and the need arose. Obviously the 'weapon of choice" is PHPDoc, but... I couldn't really ...
3
votes
4answers
1k 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 phpDocumentor via PEAR ...
2
votes
1answer
85 views

Documentor for javascript

Where I work we are using phpdocumentor and it works fine. But I cannot find an application to do the same for javascript. I found a few answer on stackoverflow, but they are all 2 years old : What ...
2
votes
3answers
104 views

PhpDocumentor how to avoid * in front of each new comment line

According to PhpDocumntor each block of comment in order to be converted into a valid piece of documentation requires to be encapsulated like this: /** * This function is used blah, blah, blah * line ...
2
votes
2answers
320 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 actually compiling ...
2
votes
3answers
1k views

Unable to exclude directories from PHPDocumentor

I'm trying to run PHPDocumentor on my WAMPServer setup. It runs fine, but I'd like to exclude certain directories, such as \sqlbuddy\ which don't contain my own code. Ironically, PHPDocumentor appears ...
1
vote
3answers
136 views

Zend Documentation: How to see inherited methods and properties

The Zend API documentation does not show inherited methods and properties. I'm using Netbeans, which does not show them either. What's the best way for me to get this info (without trawling through ...
1
vote
1answer
104 views

Can I use twice “@subpackage” for phpDocumentor?

For example I have a project called "myproj" and a subpackage called "utils" and in this subpackage there's again a subpackage called "debug". Can I do something like that: ? /** * @package myproj ...
1
vote
1answer
296 views

How do I use phpdocumentor web interface?

I'm trying to document my code using Phpdocumentor.. does anyone know How do I use Phpdocumentor web interface or some tutorial explaining this?
1
vote
1answer
95 views

Documentation Generator for Ant Builds

I am currently writing some comments for my ant targets just to help document the purpose of each and how they work. Is there a defacto standard or useful utility available to generate documentation ...
1
vote
1answer
279 views

phpDocumentor: document only classes

I'm trying to learn about phpDocumentor. I usually put a classe per file. Am I forced to document file and classes? I want to document just classes (Why should i document files?) but i receive ...
1
vote
2answers
516 views

Integrating Images in a Docbook Manual in conjunction with phpDocumentor

is there a possibility to include images into a docbook manual compiled by phpDocumentor? I tried both: <mediaobject> <imageobject> <imagedata fileref="payment_flowchart.png" ...
0
votes
1answer
16 views

phpDocumentor Output Parameters

I've got a block of code which was written a while ago and I'm looking to document, but one of the functions has an output parameter - how should a phpDoc-block be written to specify that a parameter ...
0
votes
2answers
83 views

Can PhpDocumentor (phpdoc) display full docblocks for inherited methods?

I currently have code where there is an abstract parent class that defines some concrete methods, and the children classes extend this parent class, and will use the concrete methods. For example: ...
0
votes
1answer
214 views

how to document private variable in phpdoc

I am trying to document the private variable in phpdoc but its not documenting . Here is my code. class Content { /** * simple db class variable * @access private */ var ...
0
votes
3answers
74 views

Is there software/a script that can automatically create class structures for PHP scripts?

I know that PHPDoc exists, but phpdoc wants you to put comments in your PHP files so that it can parse them... What I want is something different: Suppose that I have 10 PHP classes... all I want is ...
0
votes
1answer
157 views

In PhpDocumentor, is there a way to specify a default version number?

All the files in the code base I am documenting will always use the same version "string" Is there a way I can specific in a single place for the PhpDocumentor to use the same version for all files, ...