Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
747 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
100 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
187 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
2answers
2k views

Netbeans and PhpDocumentor

I have downloaded Netbeans 7.0 beta as I wanted to give the PhpDoc functionality a bash, but can't get it to work. I seem to be falling over on the configuration options for PhpDoc in netbeans. It is ...
4
votes
1answer
574 views

PHPDoc Template

I was wondering, if someone had a nice template (like the documentation on php.net) for PHPDoc... I don't like the standard templates and can't find new ones on google... I like php.net ...
4
votes
2answers
1k views

Fill @version tag with subversion in Eclipse

I would like to fill the comment tag @version with Subclipse or Subversion in Eclipse. CVS has done this automatically but Subversion isn't. This would be very helpful. I tried to google "@version" ...
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: /**#@+ ...
3
votes
1answer
42 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
375 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
466 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
137 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
499 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 ...
3
votes
3answers
1k 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: ...
2
votes
1answer
80 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 ...
2
votes
1answer
82 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
1answer
124 views

PHPDocumentator is creating .cs files instead of .css

I've got PHPDocumentator installed and it's almost working as excepted. However, for some reason, it's creating the CSS files as "style.cs", "print.cs", etc. (only one "s"), while these files are ...
2
votes
3answers
658 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
428 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
304 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
101 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
219 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
142 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
3answers
1k views

Parsing Javascript files with phpDocumentor

I've been playing with phpDocumentor recently and found it quite suitable for my needs. I'm largely working with PHP/HTML/JS/CSS codebases and would like phpDocumentor to parse my Javascript (and ...
2
votes
2answers
302 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
0answers
49 views

PHPDocumentor throwing an error

PHPDocumentor is throwing the following error: I am using the docbuilder interface Fatal error: Smarty error: [in evaluated template line 5]: [plugin] unknown tag - 'main' (core.load_plugins.php, ...
1
vote
2answers
31 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
70 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
20 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
133 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
101 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
345 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
218 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
281 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
88 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 ...
1
vote
1answer
432 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
189 views
1
vote
2answers
508 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
81 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
2answers
72 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
2answers
74 views

Docblocks for Doctrine collections

Is there a standard way to document the expected class of entities inside a Collection in the docblock comment in a Doctrine project? Something like: /** * @var Collection<User> */ protected ...
0
votes
0answers
71 views

PHPDocumentor - Page Details not showing issue

I'm using PHPDocumentor for the first time. I have gone through the tutorial, but am having the following issue. All my PHP files are procedural and what I would like to give at the top of the docs ...
0
votes
0answers
297 views

Eclipse Helios: phpeclipse and rse - phpDoc tooltip doesn't work when hovering over user created functions

This is my first post to this site. I find I often come to this site when searching for an answer to a problem, so I thought I'd give it a try. I am using eclipse helios with phpeclipse and rse ...
0
votes
1answer
197 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 2