Tagged Questions

PhpDocumentor (phpdoc) is an automatic code-documentation tool for PHP, based on Javadoc.

learn more… | top users | synonyms

47
votes
5answers
12k 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 be able to provide a ...
18
votes
8answers
2k views

A tool to add and complete PHP source code documentation

I have several finished, older PHP projects with a lot of includes that I would like to document in javadoc/phpDocumentor style. While working through each file manually and being forced to do a ...
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 ...
14
votes
5answers
2k views

Is there any replacement for PHPDocumentor that supports PHP 5.3?

Some of the new PHP 5.3 features, including namespaces and anonymous functions, are not compatible with PHPDocumentor, even with the latest release. For example, it just raises an error when it ...
14
votes
7answers
2k views

Any tutorials on how to use phpDocumentor?

I want to start using phpDocumentor but I'm finding it hard going - the web interface is not playing nicely and I can't get it to parse the example files I probably haven't set it up right and I ...
12
votes
10answers
2k views

Anything better than PHPDoc out there?

Does anybody use anything else to document their PHP code than PHPDoc? Are there any tools that read the same documentation syntax but give richer output?
10
votes
1answer
2k views

PHPDoc: @return void necessary?

Is it really necessary do something like this: /** * ... * * @return void */ I have quite a few methods that don't have a return value, and it seems really redundant to put something like this ...
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 ...
8
votes
3answers
742 views

How to use phpDoc with overloaded methods?

Let's say I have a PHP class called Color, it's constructor accepts various params. // hex color $myColor = new Color('#FF008C'); // rgb channels $myColor = new Color(253,15,82); // array of rgb ...
8
votes
3answers
6k views

PHP Function Comments

Just a quick question: I've seen that some PHP functions are commented at the top, using a format that is unknown to me: /** * * Convert an object to an array * * @param object $object The ...
7
votes
2answers
857 views

phpDoc class constants documentation

which is the correct way to document class constants for phpDoc? I've read the manual but i can't find anything about them
7
votes
2answers
5k views

PHPDoc documentation generator in or out of Eclipse?

I am developing with Eclipse + PDT. I've been adding phpdoc comments into my code, but actually never generated a resulting documentation in Eclipse. How should I do it - is there some functionality ...
6
votes
2answers
87 views

PHPdoc: Documenting chainable methods?

How should I properly use PHPdoc to document chainable methods in a class, as seen in the below example - what is the correct usage? class myClass { /** * @return myClass */ ...
6
votes
3answers
107 views

Can the PHP interpreter be made aware of PHPDoc type hints?

As an Emacs user, the only thing that I envy about "modern" editors like PDT is that PDT understands types, and even PHPDoc "type hints", e.g. /** * @param DateTime $date * @param string ...
6
votes
2answers
309 views

PHPDoc and __callStatic

tl;dr What is the correct way to annotate (in PHPDoc) functions implemented via __callStatic? More important: is there a way that will make NetBeans and PHPStorm understand that these are static ...
6
votes
2answers
223 views

Is there a standard for documenting GET/POST parameters?

In a PHP project, even when front controller logic is used for the main application, there can be many stand-alone scripts, ajax snippets and so on. Is there a standardized way - either PHPDoc or ...
6
votes
1answer
2k views

Variable type hinting in Netbeans (PHP)

Just curious if there's a way in netbeans to give type hints for regular variables, so that intellisense picks it up. I know you can do it for class properties, function parameters, return types, etc. ...
5
votes
3answers
138 views

VIM Insert PHPdoc automatically

Is there a way to insert PHPDoc in VIM using a command or key combination? For example, I have a class: class MyClass { public function __construct() { } public function __destruct() { } /* ...
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 ...
5
votes
2answers
637 views

Request params and phpdoc [closed]

Possible Duplicate: Is there a standard for documenting GET/POST parameters? Trying to figure out the best way to document request parameters via phpdoc in a manner that makes sense. ...
4
votes
1answer
103 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
1answer
157 views

PHPDoc and late (static or dynamic) binding

Most PHP IDEs rely on phpdoc to get hints about the type of an expression. Yet, I use frequently this pattern, which doesn't seem to be covered: class Control { private $label = ''; /** ...
4
votes
1answer
561 views

Eclipse PDT and custom PHPDoc annotations

Is there any way to add custom phpdoc annotation for Eclipse PDT? For example, I want to see @depends (for PHPUnit) in autocomplete list for comments, but now I can see there only standard annotations ...
4
votes
3answers
215 views

How should I PHPDoc a callback?

I have a method which extracts a modified preorder tree transversal tree from the database, and filters that using a callback function. For example: /** * Recursive function for building the ...
4
votes
4answers
627 views

php / phpDoc - @return instance of $this class?

How do I mark a method as "returns an instance of the current class" in my phpDoc? In the following example my IDE (Netbeans) will see that setSomething always returns a foo object. But that's not ...
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
578 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 ...
4
votes
4answers
2k views

PHPDoc for variable-length arrays of arguments

Is there a syntax for documenting functions which take a single configuration array, rather than individual parameters? I'm thinking specifically of CodeIgniter-style libraries, which use a mechanism ...
4
votes
1answer
266 views

How do I maintain high-level documentation along with phpdoc generated documentation?

For my first open source project (shameless plug: mtChart) I currently have two different types of documentations: HTML files generated by Doxygen from the phpdoc-comments within the code The wiki ...
4
votes
4answers
2k views

Can i run a script when i commit to subversion?

I'd like to run a script that builds the documentation for my php project. It is basically just using wget to run phpdoc.
3
votes
1answer
56 views

use namespace in @param

Is it good practice to include namespaces for classes in @param annotations? I know that phpdoc does not support namespaces, but how will other tools like phpdox or Doxygen act? Which way is better / ...
3
votes
1answer
114 views

Why do PHP magical methods have to be public?

I use magical methods in my PHP classes but when i try to put them private, I'm warned : WARN: The magic method __get() must have public visibility and cannot be static in ... I wouldn't like ...
3
votes
1answer
44 views

PHPDoc - witch @[item] to use for “const” statement in my sources?

How can I mark up constants using PHPDoc? What @-tag should I use? I've thought of @var, but that's not appropriate.
3
votes
2answers
822 views

Exclude certain directories and files in pdepend, phpmd, phpcpd, phpcs, phpdoc, phploc

In my project there are certain directories and certain php files which are very large in size due to which my build is failing and I want to exclude them in my build.xml Ques1- Do I have to write ...
3
votes
2answers
76 views

Should I use @return self, this or the current class?

I have a method that return the current object, how do I document this? /** * set something * * @return this */ public function setSomething(){ // ... return $this; } Or should ...
3
votes
1answer
104 views

How do I generate the API docs/documentation for Magento?

I have Magento installed and I wanted to know how to generate the full API docs, like the ones on http://docs.magentocommerce.com/ that were generated using phpdoc. Is there a configuration file ...
3
votes
2answers
192 views

Can you hint an array's items type?

This question is linked to this one : Is it possible to hint the type of the items inside a returned array ? e.g. : /** * MyFunction does a lot of things * * @param TClass1 $var1 * @param ...
3
votes
1answer
703 views

How to generate phpDoc documentation for a specific folder in Netbeans IDE?

Due to the fact that we need to integrate the Zend Framework on our project root, and that generating that documentation will be useless and take long time, I would like to generate documentation for ...
3
votes
2answers
378 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
469 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
2answers
77 views

How would I comment a PHP class I am modifying from another author?

There is a class that I am modifying that another author has written. I am wondering what is the right way add my modifications to the documentation while making sure that proper credit is given to ...
3
votes
4answers
227 views

PhpDoc - how do you document implicit input parameters, such as $_SESSION?

I just wondered what others do. If a function relies on $_SESSION['some_var'] then the header comment out to make that clear. How do you do it? Just as text, or what? Or even @param ? Edit: it ...
3
votes
3answers
291 views

vim phpdoc multiline comment autoindent

Suppose I have a comment block like this: /** * comment * comment * comment */ And when I open a new line inside this block I want vim to start it with /** * comment * _ * comment * ...
3
votes
2answers
1k views

How to mark that an argument is optional in PHPDoc?

I've got this constructor that takes an optional argument. The main problem with this is usability. The developer using my framework will catch a headache instantly because he doesn't know if he can ...
3
votes
1answer
649 views

phpdoc datatype and namespaces

What is the current status of using namespaces in phpdocs datatypes. eg: * @param string|Vendor\SomeClass $parameter
3
votes
1answer
882 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> * @param string ...
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 ...
3
votes
4answers
1k views

Documenting a PHP extension with PHPdoc

I've written a PHP extension in C, and I want to create PHPdoc documentation so that my users will get inline docs in their PHP IDE (in this case, Netbeans) when calling my extension. Ideally I'd ...
2
votes
3answers
41 views

Proper Way to Document Class in Netbeans PHP

For reasons of ease of maintenance AND IDE class auto-completion and member hinting, I've used PHPDoc in my project. Given this example class: class my_class { public $id; public $name; ...
2
votes
1answer
41 views

phpdoc suggesting type for $this->someField

In Netbeans and phpStorm, this works as expected: public function someMethod() { $objectA = uberEnterprisyFactory('someclassA'); /* @var $objectA TheClassA */ // $objectA-> ...

1 2 3 4