Tagged Questions

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 ...
8
votes
4answers
2k views

phpDocumentor alternative consuming less memory

Okay, I'm fed up with phpDocumentator. It consumes way much more memory (1.4 GB) and time (5 minutes on 2.6GHz Core 2 Duo) than I'm willing to give it. Does there exist some really compatible program ...
5
votes
1answer
1k views

PHPDocumentor date problem warnings

I'm having some issues getting phpdoc to run correctly. The docs are being generated for the most part successfully, but I get the following warning many times: Warning: date(): It is not safe to ...
4
votes
1answer
99 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 ...
4
votes
2answers
2k 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 ...
4
votes
1answer
573 views

PHPDoc Template

I was wondering, if someone had a nice template (like the documentation on php.net) for PHPDoc... I don't like the standard templates and can't find new ones on google... I like php.net ...
3
votes
2answers
375 views

How to use @package & @subpackage in phpdoc?

I'm wondering how I should use @package & @subpackage for class doc. let say I've the following class class My_Controller_Action_Helper_MyHelperAction extends Foo_Bar {} Should it be: ...
3
votes
4answers
465 views

Parsing PHP Doc Comments into a Data Structure

I'm using the Reflection API in PHP to pull a DocComment (PHPDoc) string from a method $r = new ReflectionMethod($object); $comment = $r->getDocComment(); This will return a string that looks ...
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
82 views

Documenting private methods

Is it possible to pull out the documentation for private methods with phpDocumentor? I realize this wouldn't normally be done, but in my current project it would be useful.
2
votes
3answers
656 views

Defining namespaces in phpDoc syntax

Can anyone tell me what the correct way to define php namespaces in phpDoc syntax is? Or, is @package deprecated in phpDoc, since namespaces more or less define a package? If there is none, is there ...
2
votes
2answers
426 views

Bring PHPdoc to include CakePHP .ctp files

I'm documenting my CakePHP app using PHPdocumentor. As you might know, after CakePHP convention, the views are contained in .ctp files (e.g. app/views/addresses/index.ctp), which are basically normal ...
2
votes
3answers
219 views

Parsing phpdoc comments using PHPDocumentor

I'm looking to convert PHPDocumentor output to a format I can traverse through in PHP (Ideally, I want an array of all the functions with their comments). Is there any way to do this?
2
votes
3answers
1k 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 Javascript (and ...
2
votes
2answers
301 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 ...
1
vote
0answers
48 views

PHPDocumentor throwing an error

PHPDocumentor is throwing the following error: I am using the docbuilder interface Fatal error: Smarty error: [in evaluated template line 5]: [plugin] unknown tag - 'main' (core.load_plugins.php, ...
1
vote
1answer
70 views

phpDocumentor and @global keyword

Is my use of @global correct in the following case? // File: my_special_class.php <?php ... class MySpecialClass { function display_template() { // Following variable will be ...
1
vote
2answers
60 views

Showing a literal “@link” in phpDoc

I'm writing a phpDocumentor mini-tutorial for a lightning talk, and I'm using, of course, phpdoc to generate examples. When it comes to information on how to use inline @link tags though, I haven't ...
1
vote
1answer
345 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() { ...
1
vote
1answer
430 views

Comment associative array in PHP Documentor

Hey Guys, i hope someone can help me out on this one here. I use several associative arrays in my php application and i'm using php documentor to comment my sources. I never really did specified ...
1
vote
2answers
508 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
2answers
70 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
2answers
73 views

Docblocks for Doctrine collections

Is there a standard way to document the expected class of entities inside a Collection in the docblock comment in a Doctrine project? Something like: /** * @var Collection<User> */ protected ...
0
votes
0answers
71 views

PHPDocumentor - Page Details not showing issue

I'm using PHPDocumentor for the first time. I have gone through the tutorial, but am having the following issue. All my PHP files are procedural and what I would like to give at the top of the docs ...
0
votes
1answer
196 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
2answers
125 views

what to use for php documentation generation?

What do you use for automatic PHP docs generation. I know about phpdocumentor. but it looks like it didn't have a single release within 2010. Should I just use it or are there any alternatives?
0
votes
1answer
89 views

PhpDoc create warnings because it can't find library class

When lauching phpdocumentor on a project, it creates warnings like that in the "Post-parsing" : Class ... not found These are all the library classes I use, but I don't want a documentation on ...
0
votes
1answer
135 views

Show phpDoc warnings in Eclipse

I use Eclipse PDT and phpDoc. I would like the warnings of phpDoc to show up in the editor, just like other "validation" tools. This would help the programmer team to create better documentation. Is ...
0
votes
2answers
401 views

phpDocumentor on legacy code

Can phpDocumentor be used to generate HTML docs for some legacy code that does not necessarily conform to its standard? I'd like to generate some preliminary documentation for an old code tree and ...
0
votes
2answers
188 views

PHP autodoc(Inheritance) autodocumentor tags

I am using phpautodocumentor, I am writing a class which extends a class which is in completely different folder, How can I write in comments that I am extending that particular class. Because ...
0
votes
3answers
73 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
250 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 ...
0
votes
1answer
152 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, ...