8
votes
2answers
185 views
+100

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

phpDocumentor parsing only files which have been updated

I am using phpDocumentor to generate Docs for selected libs, and doc are added to svn( good or bad ?). Each time I run phpdoc command it parses all files and updates all Doc files and only adds ...
1
vote
1answer
30 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
65 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
13 views

Accessing custom variables in a template from a phpdoc 2.0 configuration XML file

In phpdoc 2.0, is it possible to add additional custom tags to the phpdoc.xml file in order to make the values they contain available to the template's .xsl files? For example, the xml config file can ...
0
votes
0answers
19 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
0answers
80 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 ...
0
votes
1answer
99 views

PHPDoc on OSX via PEAR

I'm running OS 10.8.2 (Mountain Lion). I did a fresh install of PEAR just as this blog states: http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/ So I set include_path in ...
0
votes
1answer
55 views

phpdoc web interface: Undefined offset: 1 in <PHPDOCDIR>\src\phpDocumentor\Console\Input\ArgvInput.php

I've installed phpdoc using the installer.php file, and when I open phpdoc.php from wamp (localhost/phpDocumentor/bin/phpdoc.php) I get this error: Notice: Undefined offset: 1 in ...
0
votes
1answer
131 views

PHPDoc wiki template

I recently upgraded to phpdoc 2 and want to create a solution for outputting my api to wiki markup, instead of html or pdf. In /usr/share/php5/data/PhpDocumentor/Converters, I see the CHM, HTML, PDF, ...
0
votes
0answers
202 views

Custom templates with phpDocumentor 2

I've been trying to get a custom template to work with PHPDocumentor (2) without much luck. The documentation on their site is incomplete and I'm kind of stumped. What I've done is downloaded a copy ...
2
votes
1answer
122 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 ...
0
votes
1answer
282 views

Netbeans 7.2.1 + XAMPP

I develop primarily remotely using NetBeans 7.2.1. I'm beginning to see that NetBeans can use a local php interpreter for more than just running the code locally. I stumbled across loads of ...
0
votes
1answer
47 views

PHPDOC2 OUTPUT NOT PRODUCE

After installed the phpdoc. I have run the phpdoc run -h it gave the output. But when run the phpdoc run -d . -t ouput not produce any output.Any changes need to do please suggest me. Thanks ...
0
votes
1answer
98 views

Commenting if statements for phpdocumentor2

I am in the process of documenting a PHP project using PHPDocumentor2. Ironically, PHPDoc's documentation isn't overly detailed. I fully understand how to comment files, classes, functions and ...
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
2answers
451 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
114 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
211 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 ...
4
votes
1answer
492 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 ...
0
votes
0answers
281 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
1answer
314 views

phpDocumentor 2 installer fails to install symfony/Console with composer

I've downloaded (cloned) the github version of phpdocumentor 2 and followed the installation instructions found on the phpdoc website At the composer installation step 3 (php composer.phar install) I ...
1
vote
1answer
364 views

Can't generate documentation with phpdocumentor 2 with Netbeans

Using Netbeans "Generate PHPDoc", I'm able to generate the structure.xml for my project, but I'm at a lost as to how to get from that XML file to the fully generated phpdoc.
0
votes
0answers
139 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
255 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 ...
0
votes
0answers
88 views

phpdocumentor web interface output Zend error

I just installed the PhpDocumentor via pear and it seems to be working fine, however i am confused how do i generate the documentation to the html out put, because when i run the phpdoc -o ...
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 ...
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 ...
0
votes
1answer
100 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
208 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 * * ...
0
votes
1answer
393 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 ...
0
votes
2answers
288 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: ...
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 ...
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.
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 ...
0
votes
1answer
807 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
269 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
150 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
2answers
254 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 ...
2
votes
1answer
535 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() { ...
0
votes
2answers
823 views

phpDocumentor on legacy code

Can phpDocumentor be used to generate HTML docs for some legacy code that does not necessarily conform to its standard? I'd like to generate some preliminary documentation for an old code tree and ...
18
votes
9answers
2k 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 ...
4
votes
3answers
2k 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 ...
0
votes
2answers
336 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 ...
5
votes
3answers
5k 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 ...
2
votes
2answers
839 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 ...

1 2