Tagged Questions
0
votes
0answers
38 views
How to use @uses in phpDocumentor 2 for functions
phpDocumentor manual says that you can add a @uses attribute to a docblock to reference used function and generate there a used_by attribute.
As I write mostly procedural php-code I like to reference ...
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 ...
1
vote
1answer
92 views
Phpdocumentor and Slim routers documentation
I use phpdocumentor for generating of documentation for my project. It generates good documentation for my functions like:
/**
* Hash generator
*
* Long description
*
...
1
vote
1answer
56 views
How do i ignore specific files in phpDocumentor
I am documenting a program i built in PHP with phpDocumentor. Everything is working perfect, but the documentation shows me i have close to 100 errors because it is reading a file that i use to upload ...
2
votes
1answer
56 views
Documenting constants with PHP documentor [duplicate]
Possible Duplicate:
phpDoc class constants documentation
I have defined several constants in my project configuration file. The constants are all well commented within the file, but ...
0
votes
2answers
56 views
phpDocumentor - How to document a different author updating code, and a date?
Let's say original documentation for a class looks like this:
/**
* My custom class
*
* This class helps you do stuff. It's really great.
*
* @author David Smith
* @version 1.0
*/
If I ...
1
vote
2answers
460 views
How to use phpDocumentor for CodeIgniter
I've built quite an extensive web application and I was looking through the style guide for CodeIgniter (CI) to see how to do comments. It has things like this for classes and methods:
/**
* Super ...
1
vote
1answer
127 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
233 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
170 views
What PHP Documentation Notation does symfony use?
I use the word Notation because fabien potencier has its own generator but i can't find what notation (or syntax if you will) it uses for the comments.
...
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 ...
1
vote
1answer
226 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 ...
4
votes
2answers
345 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 ...
0
votes
2answers
307 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:
...
2
votes
1answer
171 views
Documentor for javascript
Where I work we are using phpdocumentor and it works fine. But I cannot find an application to do the same for javascript.
I found a few answer on stackoverflow, but they are all 2 years old :
What ...
1
vote
3answers
252 views
Zend Documentation: How to see inherited methods and properties
The Zend API documentation does not show inherited methods and properties. I'm using Netbeans, which does not show them either.
What's the best way for me to get this info (without trawling through ...
0
votes
1answer
851 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 ...
1
vote
1answer
220 views
Can I use twice “@subpackage” for phpDocumentor?
For example I have a project called "myproj" and a subpackage called "utils" and in this subpackage there's again a subpackage called "debug".
Can I do something like that: ?
/**
* @package myproj
...
2
votes
1answer
1k views
How do I use phpdocumentor web interface? [closed]
I'm trying to document my code using Phpdocumentor.. does anyone know How do I use Phpdocumentor web interface or some tutorial explaining this?
1
vote
1answer
169 views
Documentation Generator for Ant Builds
I am currently writing some comments for my ant targets just to help document the purpose of each and how they work.
Is there a defacto standard or useful utility available to generate documentation ...
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
624 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 ...
2
votes
3answers
135 views
PhpDocumentor how to avoid * in front of each new comment line
According to PhpDocumntor each block of comment in order to be converted into a valid piece of documentation requires to be encapsulated like this:
/**
* This function is used blah, blah, blah
* line ...
0
votes
1answer
245 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, ...
3
votes
2answers
564 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
2answers
621 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" ...
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 ...
2
votes
3answers
2k views
Unable to exclude directories from PHPDocumentor
I'm trying to run PHPDocumentor on my WAMPServer setup. It runs fine, but I'd like to exclude certain directories, such as \sqlbuddy\ which don't contain my own code. Ironically, PHPDocumentor appears ...
