Tagged Questions
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.
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 ...
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 ...
-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?
2
votes
1answer
124 views
Having trouble navigating Magento documentation
I am brand new to Magento and the documentation, primarily the phpDocs, are difficult to navigate. For example,
$attributeSet = Mage::getModel('eav/entity_attribute_set')->load($id);
In the php ...
1
vote
0answers
135 views
Tool for generating API documentation [closed]
I am not talking about tools like phpdoc or apigen (miss-leading name).
I'm creating a variety of REST inspired services and would like to generate documentation for them. Basically all the info is ...
0
votes
1answer
65 views
How should I document allowable array param values in php
Often I am passing an array as a constructor parameter. How should I document the allowable values? I have tried a few styles but they look a bit of a mess in phpdoc.
5
votes
3answers
288 views
PHPDoc to GitHub wiki
do you know if this code documentation tool exists?
My intention for a generic [project] would be:
Write PHPDoc documentation
Generate the markdown (or ASCIIDoc or Creole, etc...)
Import generated ...
1
vote
1answer
117 views
Proper way to denote array data type for phpDocumentor?
Which of the following is the proper way to document the return type of this method for phpDocumentor?
Method 1:
/**
* @return array Foo array.
*/
public function foo() {
return array(1, 2, ...
1
vote
1answer
212 views
Can you automatically put a method's code into its DockBlock in phpDocumentor 2?
I've installed phpDocumentor 2 and want to include the source for each method in the generated documentation. However, I notice that the inline @source tag does not appear to be picked up, and there ...
1
vote
1answer
271 views
Documenting Get/Post Parameters with Doxygen or PHPDoc
I was looking through the documentation for PHPDoc and could not find a good way to document the Post variables I was sending to various methods.
So, I started to look into Doxygen with the hopes ...
3
votes
2answers
314 views
How do I put blocks of PHP code into a PHPDoc DocBlock
I'm playing around with PHPDoc and have realised that you can use markdown to add some formatting to a DocBlock. In particular, I notice that you can use back ticks to highlight inline code.
However, ...
2
votes
1answer
203 views
two or more datatypes in PHPdoc @param
ok I do have this phpdoc above of my class method
/**
* this a function that translates the text
* @param string|boolean $lang if string the string given in the parameter will be the language code ...
0
votes
1answer
121 views
Is is still proper to include the @param varname in a PHP docblock?
According to wikipedia the format for @param docblock parameters is type [$varname] description where $varname is optional. This seems to be backed by the phpDocumentor project which states:
@param ...
0
votes
1answer
96 views
How to document a closure with phpdocumentor?
So, i'm working with Silex microframework and i'm curious about the correct PHPDoc way to document a closure.
require_once __DIR__.'/silex.phar';
$app = new Silex\Application();
...
2
votes
2answers
2k views
Installing manually PHPDocumentor on Mac
After trying to install PHPDocumentor with PEAR install with no success, i tried it manually as is detailed on the official website: http://www.phpdoc.org/docs/latest/for-users/installation.html
I ...
3
votes
2answers
64 views
Documentation errors tag
I have a method in a class where I am triggering an error.
/**
* Get info
* @return string|FALSE Info
*/
public function getInfo()
{
if ($this->info) {
return $this->info;
}
...
0
votes
1answer
75 views
how shall I document the use of GET or POST in a controller method?
I am searching for a best-practice-way to document my controller methods in php.
I was wondering how I should document my POST and GET requirements (I used REQUEST here to show I need it for both ...
0
votes
2answers
247 views
Zend Framework code documentation style
I was wondering why there's two blocks of comments with repeated information. Does someone knows the answer?
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD ...
1
vote
1answer
218 views
phpDocumentor Output Parameters
I've got a block of code which was written a while ago and I'm looking to document, but one of the functions has an output parameter - how should a phpDoc-block be written to specify that a parameter ...
0
votes
2answers
240 views
phpDoc way to list which outside constants a class uses?
Is there a best practice way of documenting which outside constants are used by a PHP class?
For example, I have a class that logs data to a text file. This class creates a file and puts it into a ...
4
votes
2answers
336 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 ...
2
votes
1answer
257 views
Advanced search functionality in Doxygen?
I'm researching different solutions to generate documentation based on phpdoc, Doxygen looks awesome but the search has been severely limited so far.
Example, I search for the string "session" and it ...
1
vote
1answer
205 views
phpDoc, class instance as @param?
When using phpdoc on a function I have an argument that always contains an instance of a class, is there any way to document this in phpdoc so that the generated phpdoc links to the given class?
...
0
votes
2answers
290 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
1answer
161 views
Looking for code documentation helper/generator for php, javascript, mysql
I would like to write up some documentation for the files in a project I'm working on. I know of PHPDoc, but I also want to include javascript functions as well, and possibly a list of all the files ...
0
votes
3answers
240 views
Tips for php documentation? [closed]
I've been coding php for a while, and have never done much documenting. Sure I'll give 2 word summaries of functions that I might forget about later. I am starting a large project soon, and decided ...
6
votes
2answers
198 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
*/
...
3
votes
2answers
600 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
346 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 ...
2
votes
1answer
367 views
How do I stop warnings in phpDocumentor parser when I inherit from an external library class?
I've been adding docblocks to my code, and have resolved most of the build errors and warnings that the phpDocumentor script has generated and placed into the errors.html file.
However, I have one ...
1
vote
1answer
380 views
how @usedby tag work in phpdoc
By using @usedby tag hyperlink is not coming in documentation.
Class Content
{
/**
* simple db class variable
* @access public
*/
var $_db=null; // db
/**
* s3 class ...
0
votes
1answer
813 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
3answers
82 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 ...
3
votes
1answer
609 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 ...
9
votes
2answers
3k 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
2
votes
2answers
110 views
Explaining source code via “doc”?
I am using PHPDoc and JSDoc for my source code. I know that there are tools to build an API out of those docs. However, what I am wondering is that how is one supposed to explain complex code? Do I ...
2
votes
1answer
177 views
What type of documentation does WordPress code follow?
I am trying to begin using some sort of standard for documenting my PHP code. Most of my code is in the form of WordPress plugins, some are getting quite complex, and I need to document it.
So my ...
0
votes
1answer
364 views
How to document an accessor/mutator method in phpDoc/javaDoc?
Given a function which behaves as either a mutator or accessor depending on the arguments passed to it, like this:
// in PHP, you can pass any number of arguments to a function...
function ...
1
vote
1answer
369 views
PHPDoc Function Changelog (@change?)
What is the best way to document changes in a function with PHPDoc? Something like
@change 2010.20.16 user added feature x
@change 2010.20.26 user added feature y
would be great. But assume ...
0
votes
1answer
242 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, ...
19
votes
8answers
3k 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 ...
3
votes
2answers
554 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 ...
0
votes
3answers
769 views
Web Based Documentation Generator / Editor
I'm looking for a good documentation generator that supports various programming languages, but PHP is a must. The thing is, I'm looking for it to do a very specific thing, which is essentially build ...
1
vote
2answers
620 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" ...
1
vote
1answer
511 views
Solving error messages given by PHPdoc
How can you solve the following error messages given by PHPdoc?
I run madedoc.sh by the following command
Command
sudo ./makedoc.sh
I get
Error messages
PHP Version 5.2.6-3ubuntu4.2
...
4
votes
1answer
336 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
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 ...
8
votes
2answers
8k 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 ...
0
votes
6answers
115 views
Automated way of finding where in the codebase a function is used in PHP
I'm trying to find automated way of finding where in the code a function is used.
Some form of autogenerated documentation where I have Class->method is used in this files: a.php , b.php etc. I am ...