phpDocumentor (phpdoc) is an automatic code-documentation tool for PHP, based on Javadoc.
0
votes
0answers
19 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
20 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
26 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
51 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
38 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
34 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 ...
9
votes
2answers
218 views
+100
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
48 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
15 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
41 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
31 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
82 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
68 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
13 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
19 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
59 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
67 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
61 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
16 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
116 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
65 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
110 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
60 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
46 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
38 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
44 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
156 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
22 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
115 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
46 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
81 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
39 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
65 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
74 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
51 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
104 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
256 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
56 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 ...
2
votes
0answers
40 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
86 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
188 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
vote
0answers
68 views
Aptana function returns an object and AutoComplete
I'm using the PHPDoc tag for the autocomplete function in Aptana Studio 3, but I have a problem when I use function return input class as an object like in the photo:
What is the solution?
2
votes
1answer
210 views
How can I use PHPDoc to type-hint the parameters of a Callable?
I have a method that accepts a callback as a parameter. I would like to provide a parameter signature for the callback as PHPDoc so that my IDE (PHPStorm) can produce valid type hints for functions ...
0
votes
1answer
716 views
phpDocumentor page-level docBlock in html included file
I'm using the tool from phpdoc.org and i'm stuck when I have a PHP file such as header.inc.php with only HTML inside.
<?php
/**
* Header content
*
* @author My name
*
* ...
0
votes
1answer
131 views
PHPDoc wiki template
I recently upgraded to phpdoc 2 and want to create a solution for outputting my api to wiki markup, instead of html or pdf.
In /usr/share/php5/data/PhpDocumentor/Converters, I see the CHM, HTML, PDF, ...
0
votes
1answer
77 views
PHPDoc for fluent interface in subclass?
Is there any why to make my IDE (actually PHPStorm) understand that:
$student->setName('Marco');
Will return an instance of Student, without redefining setName() in the subclass (only for ...
0
votes
0answers
203 views
Custom templates with phpDocumentor 2
I've been trying to get a custom template to work with PHPDocumentor (2) without much luck. The documentation on their site is incomplete and I'm kind of stumped.
What I've done is downloaded a copy ...
2
votes
1answer
125 views
Optional argument in phpDoc @method signature
Is there a way to mark argument in @method signature as optional in phpDoc?
Something like this:
/*
* @method bool alloc() alloc(int $filesize [, string &$result]) Allocates space for a file to ...
1
vote
1answer
121 views
How can I specify array of objects in PhpDoc [duplicate]
Possible Duplicate:
PHPDoc type hinting for array of objects?
I use PhpDocumentor2 for generating documentation.
I searched for this subject but I can't find specific rule for it.
For ...
1
vote
1answer
511 views
PHPDoc optional parameter
There are already 2 similar questions of this type here on SO but none of the answers seem to work.
PHPDoc doesn't seem to recognize optional parameters in my functions as optional, for example:
/**
...


