0
votes
0answers
19 views

use netbeans phpdocumentor array

use netbeans code assist..... $file_list = array(); /** * this is db host */ $file_list['db_host'] = 'localhost'; /** * this is db id */ $file_list['db_id'] = 'root'; $file_list[] -"netbeans ...
0
votes
1answer
283 views

Netbeans 7.2.1 + XAMPP

I develop primarily remotely using NetBeans 7.2.1. I'm beginning to see that NetBeans can use a local php interpreter for more than just running the code locally. I stumbled across loads of ...
2
votes
2answers
447 views

PHPDocumentor, Netbeans & GraphViz

I configured my phpdpc.bat as the following in netbeans: C:\xampp\php\phpdoc.bat --sourcecode -o HTML:Smarty:default I've found the information that I can build some how graphviz grafics with ...
1
vote
1answer
366 views

Can't generate documentation with phpdocumentor 2 with Netbeans

Using Netbeans "Generate PHPDoc", I'm able to generate the structure.xml for my project, but I'm at a lost as to how to get from that XML file to the fully generated phpdoc.
2
votes
1answer
535 views

Php with NetBeans: Applying new PhpDoc without the actual declaration

Is there a way to apply new PhpDoc without redeclaration of method, for instance I have a class which: class GeneralContainer { private $children; public function __construct() { ...
5
votes
3answers
6k views

Netbeans and PhpDocumentor

I have downloaded Netbeans 7.0 beta as I wanted to give the PhpDoc functionality a bash, but can't get it to work. I seem to be falling over on the configuration options for PhpDoc in netbeans. It is ...
0
votes
3answers
647 views

Special HTML characters in phpDocumentor in the NetBeans IDE

As you know the NetBeans IDE will pop you inline documentation in your PHP sources based on the phpDocumentor syntax. What I found out is that when I use special HTML characters in my phpDocumentor ...
17
votes
3answers
2k views

Netbeans-esque retrospective auto-comment/phpDocumentor tool (for Eclipse or standalone)

Is there anything similar to netbean's Javadoc auto comment tool for PHP/phpDocumentor/Eclipse? In the netbeans implementation: A dialog pops up and allows you to run through all the members of ...