8
votes
2answers
178 views

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
votes
0answers
26 views

PHP DOCUMENTOR SUPRESSING WARNINGS [closed]

I am using php documentor 2. I have some phtml files which have no doc block. I am getting this error No page-level DocBlock was found in filename.phtml I don't want these errors to get ...
1
vote
1answer
29 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
1answer
62 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
18 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 * * ...
0
votes
1answer
36 views

How do I change the path to php in phpDocumentor?

I have at least two (probably three) installations of PHP on my machine. phpDocumentor seems to insist upon using /usr/local/bin/php, while I would prefer it to use /usr/local/php5/bin/php. I haven't ...
0
votes
0answers
67 views

PhpDocumentor2 output in HTML

One big question HOW to generate output in HTML using PhpDocumentor2. Bcs it generates AST with .xml file but when i try to type command with: -o HTML:frames:earthli I get [RunTimeException] that ...
0
votes
0answers
78 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 ...
1
vote
1answer
77 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
45 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
54 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 ...
3
votes
1answer
33 views

phpDocumentor tab delimiter

Pretty simple one: is it ok to use tabs inside phpDocumentor tags? Like: /** * @param string @some_var Description */ There's a tab between @some_var and Description Didn't find ...
0
votes
2answers
538 views

php.ini - command line PHP and WAMP server access different files

I don't know if this is default behavior or not, but it seems weird to me. I installed WAMP server v2.2e from scratch, with PHP 5.4.3, on a windows 7 machine. I get these minor bugs that i don't ...
2
votes
1answer
119 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
270 views

phpDocumentor2: XSLT not found

if i call the phpDocumentor to generate a documentation all works fine until the XSLT-Transformation begins. Then i get following message: [phpDocumentor\Plugin\Core\Exception] The XSL writer was ...
1
vote
2answers
407 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 ...
0
votes
0answers
35 views

Files in PhpDocumentor

PhpDocumentor creates the following documentation: "Namespaces", "Packages", "Charts" and "Reports". How do I set it up to also display a list of my files?
2
votes
2answers
442 views

PHPDocumentor, Netbeans & GraphViz

I configured my phpdpc.bat as the following in netbeans: C:\xampp\php\phpdoc.bat --sourcecode -o HTML:Smarty:default I've found the information that I can build some how graphviz grafics with ...
2
votes
1answer
62 views

The best way to securely share the documentation for my PHP web app? [closed]

I'm using PHPDocumentor to generate the documentation for my web application. This is working well and I am pleased with the results so far. However I need to make this documentation available from ...
0
votes
0answers
142 views

PHPDocumentor: cannot open php.doc in a Zend setup

myI have been trying to install phpDocumentor on a Windows vista system, but keep getting the message "could not open input file: \phpdoc.php" when I enter phpdoc.bat or 'phpdoc' command in the ...
0
votes
0answers
51 views

phpDocumenter and abstract methods

I'm using phpDocumentor phpDocumentor version 2.0.0a10` and have several abstract classes that I am documenting. The documentation seems to include those abstract classes but not methods that ...
0
votes
2answers
445 views

phpDocumentor - “Is phpdoc in either the path or include_path in your php.ini file?”

I'm trying to run phpDocumentor and am getting this error... I've searched extensively on Google and cannot find a solution that works, unfortunately I couldn't install via PEAR so I've had to ...
1
vote
1answer
111 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
209 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 ...
0
votes
1answer
50 views

PHPDocumentor broken links

The links in the responsive phpdocumentor template seem to be broken. For example the url to the packages contains 'db_Models' packages/db_Models/ When removing db_Models from the URL it work fine. ...
4
votes
1answer
490 views

PHP Documentor --output option

I have installed PHP Documentor through PEAR. but output option is not working. when i use simple command like phpdoc -d source/path -t target/path --template responsive it works fine. but when ...
2
votes
5answers
2k views

Can't set/find detect_unicode to Off

I'm want to start using phpDocumentor and the manual installation keeps throwing an error about me not having set detect_unicode = Off in my php.ini in Terminal. When I add it to my php.ini it ...
1
vote
0answers
88 views

Why is phpDocumentator not liking my @param?

Hi have a simple function that has a param of object Person. When I run the phpDocumentator (phpdoc -d . -t /path/to/www/docs) and see the Errors report I get: The type hint of the argument is ...
0
votes
0answers
279 views

Templates for phpDoc and PDF [closed]

Anyone know where to find some good templates for phpDocumentor2 (phpdoc)? And also how can I generate PDF through phpdoc?
0
votes
0answers
138 views

phpdoc anonymous function

Ihave some anonymous function calls in my project. How to use phpdoc for anonymous functions? Example spl_autoload_register(function($className) { //code }); Thanks.
0
votes
2answers
251 views

phpDocumentor Not working

Im trying to get started using phpDocumentor. My problem is its only generating a img,css,js folders and a structure.xml file. I have currently created a folder in c:/xampp/htdocs called phpTest ...
6
votes
5answers
2k views

phpDocumentor - Could not open input file: phpdoc.php

I'm trying to use phpDocumentor (for the first time, I have no idea what I'm doing). Actually, I want to use it only with SublimeText 2 and this plugin. Can you guide me step by step what should I do ...
0
votes
1answer
98 views

PHPDoc: Is is possible to reference the object property descriptions from factory method docblock?

If I use a factory method to instantiate objects then is it possible to reference the docblock descriptions of the class properties for the objects being instantiated? I find myself looking into the ...
0
votes
1answer
129 views

phpDocumentor produces invalid filenames

All links in produced documentation are like: docs/classes/db_Foo/Bar.html. The actual filenames do not contain any db_ prefix, so the whole documentation points to just 404 pages. Why are links ...
1
vote
1answer
207 views

PHPDoc: How to document different class property options

Is there any way with phpdoc to document the different values that a class property can take and what effect this will have. For example:- class SomeClass { /** * Cell text align * * ...
1
vote
1answer
975 views

PHPDocumentor optional arguments

I'm trying to write the phpdocumentor block for the following: /** * daysBetween * * Returns the number of whole working days between start_date and end_date. Working * days exclude weekends and ...
0
votes
1answer
391 views

How do I properly document an array property in a class for phpdocumentor?

I'm trying to find out how to properly document an array property in a class for phpdocumentor. Ex: <?php class foo { /** * This holds something important * @var string */ ...
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 ...
4
votes
2answers
333 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
2answers
235 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, ...
0
votes
1answer
737 views

PhpDocumentor ubuntu installation

I use Ubuntu 11.10, and I want install phpdocumentor. I use the tutorial How to install PhpDocumentor on Ubuntu. But: If you navigate to http://localhost/PhpDocumentor/ (note that the URL is case ...
1
vote
1answer
168 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
141 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.
3
votes
1answer
71 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 ...
2
votes
1answer
228 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.
1
vote
3answers
245 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 ...
7
votes
4answers
1k 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 ...
21
votes
3answers
2k 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 ...
4
votes
2answers
1k 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: ...
1
vote
2answers
105 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 2