Tagged Questions
17
votes
3answers
809 views
Is phpDocumentor dead?
Or is it just at a 'finished' state? I've used PHPDoc for many years on all my PHP projects, but I recently noticed that the last post on the PHPDoc website was from 2008. So I'm wondering if it's ...
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 ...
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 ...
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
...
4
votes
1answer
126 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
4answers
203 views
What is the proper way to document files, classes and constructors?
What is the most useful/most standard/least surprising way to consistently write comment blocks for constructors and classes and files containing just a single class?
Comment blocks for classes, not ...
4
votes
3answers
1k views
What is the correct way to document PHP constants (define) with phpDocumentor
How must we document (with phpDocumentor) constants defined with define() in PHP?
I found nothing in the docs, but found the following example (which I don't see it's use) in the sample2.php:
/**#@+
...
4
votes
3answers
2k views
PhpDocumentor installed via PEAR on OSX not working - missing files?
I'm basically new to PEAR (and PhpDocumentor); I installed PhpDocumentor using the PEAR CLI, and everything seemed to go fine... until I went to use it, at which point I got the following error:
...
3
votes
1answer
45 views
phpDocumentor How to document available options for string parameter
I have a public method for a class and I would like to document the available string values that the method can accept. Would this be acceptable:
/**
* Set size of photos
*
* @param string $size can ...
3
votes
2answers
414 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
494 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
142 views
Documenting PHP, should I copy/paste if I extend a class?
I have a PHP class with a method. In the base class (it's more like a prototype, but I'm not using prototypes because we have to be backwards compatible), I document the parameters and description of ...
3
votes
1answer
515 views
Easy Rundown, Comprehensive phpDocumentor Tutorial?
I find the one available at the website to be very overwhelming for a newbie at this. Is there a better tutorial out there, one that takes it a little slower, instead of throwing 3 long php source ...
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 ...
2
votes
1answer
86 views
Documenting private methods
Is it possible to pull out the documentation for private methods with phpDocumentor?
I realize this wouldn't normally be done, but in my current project it would be useful.
2
votes
3answers
729 views
Defining namespaces in phpDoc syntax
Can anyone tell me what the correct way to define php namespaces in phpDoc syntax is? Or, is @package deprecated in phpDoc, since namespaces more or less define a package?
If there is none, is there ...
2
votes
2answers
451 views
Bring PHPdoc to include CakePHP .ctp files
I'm documenting my CakePHP app using PHPdocumentor. As you might know, after CakePHP convention, the views are contained in .ctp files (e.g. app/views/addresses/index.ctp), which are basically normal ...
2
votes
1answer
319 views
How to generate documentation from css file?
I reference to CSSDoc specification and want to generate comment documentation from css file. The first thought used phpdocumentor tool. When execute phpdoc -o HTML:frames:default -f main.css -t docs ...
2
votes
3answers
103 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 ...
2
votes
3answers
225 views
Parsing phpdoc comments using PHPDocumentor
I'm looking to convert PHPDocumentor output to a format I can traverse through in PHP (Ideally, I want an array of all the functions with their comments).
Is there any way to do this?
2
votes
2answers
148 views
phpDocumentor @global and @name question
First day I use phpDocumentor and so far so good, but I have a question that I didn't catch in the manual... The documentation of global variables.
How would I document this code if:
$someGlobalVar ...
2
votes
2answers
318 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 ...
2
votes
3answers
1k 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 ...
1
vote
2answers
35 views
Documenting groups of class constants with phpDocumentor
Let's say I've got a method that has a parameter, whose valid values are declared as class constants (think PGSQL_ASSOC/PGSQL_NUM/PGSQL_BOTH). And there's another method, with a similar parameter, ...
1
vote
1answer
78 views
phpDocumentor and @global keyword
Is my use of @global correct in the following case?
// File: my_special_class.php
<?php
...
class MySpecialClass {
function display_template() {
// Following variable will be ...
1
vote
1answer
21 views
Is there a standard way to indicate what the associative keys of a parameter that is passed in should be in phpDocumentor
For example
* @param array $an_Array An array of stuff that is needed.
an_associate_key Description about this key.
another_key Another Description.
1
vote
3answers
136 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 ...
1
vote
2answers
60 views
Showing a literal “@link” in phpDoc
I'm writing a phpDocumentor mini-tutorial for a lightning talk, and I'm using, of course, phpdoc to generate examples. When it comes to information on how to use inline @link tags though, I haven't ...
1
vote
1answer
104 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
...
1
vote
1answer
359 views
Php with NetBeans: Applying new PhpDoc without the actual declaration
Is there a way to apply new PhpDoc without redeclaration of method, for instance I have a class which:
class GeneralContainer {
private $children;
public function __construct() {
...
1
vote
2answers
234 views
phpdoc vs. phpxref
Does one have capabilities the other doesn't? is it a problem the neither has been updated in about 3 years? Is there something lacking from both?
1
vote
1answer
295 views
How do I use phpdocumentor web interface?
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
277 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 ...
1
vote
1answer
471 views
Comment associative array in PHP Documentor
Hey Guys,
i hope someone can help me out on this one here.
I use several associative arrays in my php application and i'm using php documentor to comment my sources. I never really did specified ...
1
vote
3answers
2k views
How to document class properties in PHP 5 with phpDocumentor
Take in consideration the following PHP 5 class:
class SomeClass
{
//I want to document this property...
private $foo;
function __construct()
{
}
public function ...
1
vote
2answers
192 views
1
vote
2answers
514 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" ...
0
votes
1answer
14 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
1answer
101 views
PhpDocumentor ubuntu installation
I use Ubuntu 11.10, and I want install phpdocumentor. I use this tutorial. But
If you navigate to http://localhost/PhpDocumentor/ (note that the URL is case sensitive) you will find the installation ...
0
votes
1answer
214 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
1answer
40 views
phpDocumentor applied to some functions
Is there any way you can make phpDocumentor generate docs only for some specific functions (even if all of them have the right docblock) ? Maybe there is a special tag for this ?
Update: I can't use ...
0
votes
2answers
132 views
what to use for php documentation generation?
What do you use for automatic PHP docs generation.
I know about phpdocumentor. but it looks like it didn't have a single release within 2010.
Should I just use it or are there any alternatives?
0
votes
1answer
94 views
PhpDoc create warnings because it can't find library class
When lauching phpdocumentor on a project, it creates warnings like that in the "Post-parsing" :
Class ... not found
These are all the library classes I use, but I don't want a documentation on ...
0
votes
1answer
143 views
Show phpDoc warnings in Eclipse
I use Eclipse PDT and phpDoc.
I would like the warnings of phpDoc to show up in the editor, just like other "validation" tools. This would help the programmer team to create better documentation.
Is ...
0
votes
1answer
236 views
0
votes
2answers
205 views
PHP autodoc(Inheritance) autodocumentor tags
I am using phpautodocumentor, I am writing a class which extends a class which is in completely different folder, How can I write in comments that I am extending that particular class. Because ...
0
votes
3answers
74 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 ...
0
votes
1answer
157 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, ...
0
votes
3answers
460 views
Special HTML characters in phpDocumentor in the NetBeans IDE
As you know the NetBeans IDE will pop you inline documentation in your PHP sources based on the phpDocumentor syntax.
What I found out is that when I use special HTML characters in my phpDocumentor ...
0
votes
3answers
237 views
Is it possible to use phpDocumentor for parsing of DocBlock tags?
I want to use phpDocumentor classes for parsing of my own PHP documentation and working with results. I can do this manually, but I'm pretty sure that phpDocumentor could be used.
The problem is that ...