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

learn more… | top users | synonyms

0
votes
1answer
5 views

phpDocumentor2 not showing packages in html output

I am trying to get phpDocumentor2 to build API documentation for a PHP project I am working on. The problem is that the HTML output landing page does not show the packages defined in my project. It ...
0
votes
2answers
14 views

how to add a non-existent method name to suggest list under Zend Studio?

I wrote a class like this : class config { private $conf; public function __call( $confName, $args ){ if ( 0 == count($args) && isset($this->conf[$confName]) ){ ...
0
votes
1answer
14 views

Parsing phpdoc to JSON

I would like to find a way to use phpdoc2 to parse PHP projects into JSON rather than into Abstract Syntax Tree XML. Although of course I could just parse the XML into JSON, it seems that creating XML ...
0
votes
2answers
21 views

Declare properties of a local variable in PHPDoc

I have an instance of a stdClass with some properties. Which is the correct way to declare those properties in PHPDoc? I tried this, but it seems it's not ok: /** * @var $requestParams ...
4
votes
2answers
28 views

Is there a way I can document an array of [type] using PHPDoc?

Say I have a function like this: function theFunction() { $arr = array(); for ($i=0;$i<10;$i++) { $arr[] = new theObject($i); } return $arr; } I need to document the ...
0
votes
1answer
29 views

phpdoc on Netbeans using MAMP not working

I am trying to get phpdoc working on netbeans but I am getting the following error PHP Warning: require(PhpDocumentor/phpDocumentor/phpdoc.inc): failed to open stream: No such file or directory in ...
0
votes
2answers
55 views

No DocBlock was found

I can't make this error go away. I've tried: moving the doc block everywhere added a description to the namespace added the class and every combo of those I could come up with uninstalled and ...
0
votes
0answers
33 views

How can I keep PhpStorm from reformatting phpdoc comments?

I am using Swagger annotations in my doc block, which have hierarchical @xxx type comments. Every time the 'reformat code' is used or update the doc blocks from the right-mouse menu, PhpStorm seems to ...
2
votes
2answers
52 views

How to do multi-line comments in NetBeans without auto DocBlock formatting?

Sometimes in my code I like to comment out a block of code for temporary use/reference etc eg: /* blah */ But it's a minor annoyance that if I then want to go and insert a line inside that ...
0
votes
0answers
24 views

Where can I host API docs in javadoc and phpdoc format? [closed]

I'm trying to find a place to host API docs in javadoc and phpdoc format, something like readthedocs.org with webhooks into git would be ideal.
0
votes
1answer
23 views

Avoid error 'Parameter $arg could not be found in method()' on variable arguments methods on phpDocumetor

I've been recently documenting my classes, and one of them has a method with no arguments in its definition, but because I parse them with get_func_args(). Let me show you: public function method() { ...
0
votes
1answer
36 views

Syntax of Closure in PHPDoc

I cant find any documentation on the Closure type in PHPDoc. So my question is how do I define the parameter of the parameters sent to the closure and its return value ? Example: How do i describe ...
0
votes
0answers
82 views

Generating DocBlock for a method in Aptana Studio

I'm using Aptana Studio 3 for PHP development. I know there is a snippet for PHPDoc blocks generation for classes and methods (type doc, press ctrl+space and appropriate snippet is inserted). The ...
1
vote
1answer
43 views

not everything in phpdoc header showing up

I'm trying to create some documentation using phpDocumentor (phpdoc -d . -t output) on phpseclib's Math_BigInteger and had a few questions. Here's the header: /** * Pure-PHP arbitrary precision ...
-2
votes
1answer
37 views

How to document php file using phpdocumentor? [closed]

i am really having difficulty understanding how PHpDocumentor works. I followed the installation process but still cannot figure out how to document the php files that I have. I have the web-based ...
14
votes
3answers
317 views

How to write code block using phpDocumentor, tutorials/extended documentation?

How to write code blocks using phpDocumentor while writing tutorials/extended documentation? I have tried <programlisting>, it can generate the <code> tag , but it does not parse its ...
1
vote
1answer
59 views

What are valid values for PHPDoc's @param annotation?

I'm on PHPdocs Reading this : The datatype should be a valid PHP type (int, string, bool, etc)," which is fine, but they don't say which strings (such as int, string, bool) to use to identify the ...
0
votes
0answers
18 views

phpDocumentor parsing only files which have been updated

I am using phpDocumentor to generate Docs for selected libs, and doc are added to svn( good or bad ?). Each time I run phpdoc command it parses all files and updates all Doc files and only adds ...
1
vote
1answer
44 views

How to indicate that method is a part of interface with PHPDoc?

How to indicate that method is a part of interface with PHPDoc? For example: /** * @implements BarInterface */ class Foo implements BarInterface { /** * ...
1
vote
1answer
44 views

What does “no short description for property” from phpDoc mean?

I'm getting this critical error when running phpDoc on a class file of mine: No short description for property $id. This is the relevant code: /** @type int The user's id. */ private $id = 0; I ...
1
vote
2answers
100 views

Prevent xmlns=“” attribute from being added to HTML elements generated by XSLT 1.0

I am in the process of creating a template for phpdoc 2 and I am trying to figure out how to prevent the attribute xmlns="http://www.w3.org/1999/xhtml" from being added to the root level elements of ...
1
vote
1answer
95 views

PHPDOC Examples Without Line Numbers

According to PHPDocumentor's documentation, to show an example it would be like this: @example [location] [<start-line> [<number-of-lines>] ] [<description>] This seems like a ...
0
votes
0answers
17 views

Accessing custom variables in a template from a phpdoc 2.0 configuration XML file

In phpdoc 2.0, is it possible to add additional custom tags to the phpdoc.xml file in order to make the values they contain available to the template's .xsl files? For example, the xml config file can ...
0
votes
0answers
20 views

phpdoc not parsing constant description

I've been trying to document my configuration file, following the phpdocumentor documention I started with a simplified config file which looks like this: /** * Configuration / Settings file * * ...
2
votes
1answer
70 views

What is the best way to use: @package, @subpackage and @category

I'm reading over phpdoc.org and don't quite understand the best time to use @package, @subpackage and @category. Ironically, the documentation / examples are not as helpful. Is it just me? If it ...
2
votes
1answer
70 views

PHP Depend (pdepend) ignores @package and uses namespaces as packages instead

I tried to compare the metrics of some PHP frameworks with PHP Depend and ran into annoying and probably unintended behavior: The @package annotation is being ignored, instead namespaces are treated ...
0
votes
2answers
71 views

What reasons and circumstances should javadoc/phpdoc be chosen over regular comments?

What reasons and circumstances should javadoc/phpdoc be chosen over regular comments? I know what the syntax difference is but why use one or the other. Is it mainly semantic or are there other ...
0
votes
1answer
22 views

DocBlocks: Difference between @uses and @see

Fairly straightforward question - when writing docblocks, how should I determine whether I should be saying a structural element @uses another, and when should it tell people to @see the other ...
1
vote
3answers
135 views

Proper DocBlock comment for the method of a class, which implements Factory design pattern

What I mean by proper DocBlock comment is a comment which: Conforms to PHPDoc standard Provides PHPStorm IDE autocomplete Here is the class itself: class Factory_DomainObjects { /** * ...
1
vote
3answers
74 views

Best practices: Use of @throws in php-doc, and how it could be handle

Let's say I have a class with a method like this: /* * * Loads the user from username. * * @param string $username The username * * @return UserInterface * * @throws userNotFoundException if ...
3
votes
3answers
140 views

Best way to document Array options in PHPDoc?

I'm struggling to write readable and easy to understand documentation that describes the multi-tree structure for Array options that are passed to a function. Here is an example array structure. ...
0
votes
1answer
67 views

Guidelines to document php files with phpdoc2

Starting documenting my project, using phpdoc2 for the first time, I've come upon a few questions. I did read the guides on phpdoc.org. Is there a guideline of what to document when using phpdoc2? Do ...
1
vote
1answer
64 views

Is there a way to auto refresh function documentation in netbeans

As we all know, code keeps changing constantly. Someone creates it and then thousands of people will change the parameters of the functions and underlying code. The function parameters that are ...
0
votes
1answer
40 views

What is the right way to document usage of models?

What is the right way to document the usage of a Model A accessed in Model B? In this case i want to document the usage of Excel. class Preview extends Eloquent { /** * Push file Data to ...
0
votes
1answer
46 views

phpdoc keeps telling me my page-level docblock is not present

PHPDocumenter keeps telling me that my page-level docblock is not present in my file, i read several pages of documentation online to make this work but still doesn't work, anyone know whats wrong? ...
5
votes
3answers
165 views

Use of @since in PHP code

I am using the @since comment in my PHP code. I have a question about its use though. Say I have a function that performs a particular task, and it's been implemented in version 1.0. So I currently ...
0
votes
1answer
24 views

Hard-wrap phpdoc

I need a way to hard-wrap comments like phpdoc in vim (ideally, it would be better if javadoc and jsdoc could be wrapped the same way too, but right now I need phpdoc only). Are there any plugins ...
0
votes
2answers
134 views

PHP Documentor installed via PEAR, phpdoc Command Not Found

I installed PHP Documentor on a shared host (Just Host) via PEAR and it appears to have installed correctly, no errors reported, and phpdoc is listed under the bin directory. Further, phpDocumentor is ...
0
votes
0answers
47 views

Reference private property in class from second class using phpdoc?

namespace { class ClassOne { private $table = 'myTable'; } } namespace private { class ClassTwo { public function __construct(\stdClass $data){} } } And basically what I want ...
0
votes
0answers
91 views

PHPDoc 2 comments: file & namespace

it is possible that the files section (using file level doc block) was removed in V2? I am happy about it because I prefer single classes in each file and only need the class docblock. I was just ...
0
votes
1answer
45 views

PHPDoc: Documenting a function with a variable number of arguments

What is the recommended method for documenting a class method that accepts a variable number of arguments? Maybe something like this? <?php class Foo { /** * Calculates the sum of all ...
0
votes
1answer
71 views

which is the correct PHPdoc for methods of objects which are properties in phpstorm?

I'm new to PHPStorm and I imported an existing project in this IDE. Now I receive many warnings like Method 'query' not found in class I read about using PHPDoc-blocks in order to declare the ...
0
votes
1answer
76 views

Use PHPDocumentor to create an Eclipse Library

I have an unusual request, I'm working on PHP 5.3, my IDE is Eclipse and I need help setting a file like the one that comes in default with the php functions, so I can use it for code completion and ...
-3
votes
1answer
52 views

How to add images (e.g. screenshots) to PhpDoc comments? [closed]

I want to know how to add screenshots to my PhpDoc. How can I do that?
0
votes
1answer
112 views

PHPDoc on OSX via PEAR

I'm running OS 10.8.2 (Mountain Lion). I did a fresh install of PEAR just as this blog states: http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/ So I set include_path in ...
0
votes
1answer
346 views

annotating a local variable in php

I am using Eclipse PDT and I want to annotate a local variable using Phpdoc. All I see is that I can annotate the variables/properties of a class using @var or even @property, but how is this ...
0
votes
1answer
60 views

phpdoc web interface: Undefined offset: 1 in <PHPDOCDIR>\src\phpDocumentor\Console\Input\ArgvInput.php

I've installed phpdoc using the installer.php file, and when I open phpdoc.php from wamp (localhost/phpDocumentor/bin/phpdoc.php) I get this error: Notice: Undefined offset: 1 in ...
3
votes
1answer
50 views

Define blocks not parsing

Im trying to document my framework with phpDocumentor v2. All is well except for constants. Here is my code: // Define our site url if( MOD_REWRITE ) { /** * The URL to get ...
1
vote
1answer
91 views

Convice IDE that variable contains reference to class?

I am using CodeIgniter and have my own classes that I bounce around. One in particular is a class that gets instantiated from my models, well actually a class that extends this does. It starts off as ...
4
votes
1answer
214 views

Is there a PHPCS standard targeting PHP docblocks?

Is there a PHPCS coding standard that would check that proper annotations (@param, @return, @throws, etc.) are present in a docblock, including the proper spacing between them?

1 2 3 4 5 7